  /**
	 * Popup oauth window...
	 */
	function _displayOAuthConnect(type) {
		var windowWidth = 820;
		var windowHeight = 450;
		var centerWidth = (window.screen.width - windowWidth) / 2;
		var centerHeight = (window.screen.height - windowHeight) / 2;
		
		//show window...
  	var _window = window.open("oauth_connect.php?type="+type, 'justboughtit_oauth_window', 'status=0, menubar=0' + 
  		',width=' + windowWidth + 
      ',height=' + windowHeight + 
      ',left=' + centerWidth + 
      ',top=' + centerHeight);
      
    _window.focus();
	  //set success callback method...

	}
