/**********************************************
	Author:		Ryan D. Emerle
	Date:		12.13.2004
	
	Desc:		Centralized javascript file for 
				the main AdminManage pages
**********************************************/
function open_window (url,width,height) {
	urlstring=url;

	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;

	main_window=window.open(urlstring,'main_window','top=' + TopPosition + ',left=' + LeftPosition + 'directories=no,hotkeys=no,location=no,menubar=no,status=no,toolbar=no,resizable=yes,scrollbars=no,height=' + height +',width='+ width)
	main_window.focus();
	
	if (main_window != null && main_window.opener == null) main_window.opener=window;
}

/* Pop up boxes specific to the cart and checkout */
        function openwin(){
        window.open("","x", 'toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width=415,height=335');
        }
		
/* function submitform()
{
  document.cart.submit();
}
*/
