//Used for service center pop-up
function openServiceWindow(url){
	
	browser_name = navigator.appName;
	browser_version = parseFloat(navigator.appVersion);
	//macs 
	if (navigator.appVersion.indexOf("Mac")!=-1) {
		//MAC IE (yes status bar)
		if (browser_name == "Microsoft Internet Explorer") 	{
			newwin = window.open(url,"ServiceCenter",'resizable=yes,scrollbars=yes,width=610,height=360,status=yes,location=no,toolbar=no,menubar=no');
		}
		//MAC Netscape 3.0 (yes status bar)
		if (browser_name == "Netscape" && browser_version < 4.01)	{
			newwin = window.open(url,"ServiceCenter",'resizable=yes,scrollbars=yes,width=610,height=360,status=yes,location=no,toolbar=no,menubar=no');
		}
		 //MAC Netscape 4.0+  (focus, no status bar)
		 else {
		 		newwin = window.open(url,"ServiceCenter",'resizable=yes,scrollbars=yes,width=610,height=360,status=yes,location=no,toolbar=no,menubar=no');
				newwin.focus(); 
		}
	}	 
	//PCs
	else if (browser_name == "Microsoft Internet Explorer" && browser_version <= 4) {
			//IE 3,4 (no focus, no status bar)
			newwin = window.open(url,"ServiceCenter",'resizable=yes,scrollbars=yes,width=610,height=360,status=yes,location=no,toolbar=no,menubar=no');
	}
	
	else if (browser_name == "Netscape" && browser_version < 4.01) {
				//Netscape 3 (focus, yes status bar)
				newwin = window.open(url,"ServiceCenter",'resizable=yes,scrollbars=yes,width=610,height=360,status=yes,location=no,toolbar=no,menubar=no');
				newwin.focus(); 
				newwin.refer = self;
	}
	else {
				//Netscape 4 .0+, IE 5 (focus, no status bar)
					newwin = window.open(url,"ServiceCenter",'resizable=yes,scrollbars=yes,width=610,height=360,status=yes,location=no,toolbar=no,menubar=no');	
					newwin.opener=window;
					newwin.focus();
	}
}

