<!--var detect = navigator.userAgent.toLowerCase();var OS,browser,total,thestring;var popUpWin=0;var posx=0;var posy=0;var top=0;var left=0;var version = 0;if (checkIt('konqueror')){	browser = "Konqueror";	OS = "Linux";}else if (checkIt('safari')) browser = "Safari";else if (checkIt('omniweb')) browser = "OmniWeb";else if (checkIt('opera')) browser = "Opera";else if (checkIt('webtv')) browser = "WebTV";else if (checkIt('icab')) browser = "iCab";else if (checkIt('msie')) browser = "Internet Explorer";else if (!checkIt('compatible')){	browser = "Netscape Navigator";	version = detect.charAt(8);}else browser = "An unknown browser";if (!version) version = detect.charAt(place + thestring.length);if (!OS){	if (checkIt('linux')) OS = "Linux";	else if (checkIt('x11')) OS = "Unix";	else if (checkIt('mac')) OS = "Mac";	else if (checkIt('win')) OS = "Windows";	else OS = "Unknown operating system";}function checkIt(string){	place = detect.indexOf(string) + 1;	thestring = string;	return place;}function popUpWindow(mypage,myname,w,h,features){  // Screen resolution  if(screen.width){  	var winl = (screen.width-w)/2;  	var wint = (screen.height-h)/2;  }  else{  	winl = 0;	wint = 0;  }  if (winl < 0) winl = 0;  if (wint < 0) wint = 0;  // OS and Browser detection  if (OS=="Mac"){	  // Browser detection on MAC OS	  if (browser=="Internet Explorer"){	  	w=w-40;	  	h=h-0;	  }	  else if (browser=="Netscape Navigator") {	  	w=w-0;	  	h=h-0;	  }	  else if (browser=="Opera"){	  	w=w+25;	  	h=h+25;	  }	  else if (browser=="Safari"){	  	w=w-46;	  	h=h-5;	  }  }  else if (OS=="Windows"){	  //Browser detection on WINDOWS OS	  if (browser=="Internet Explorer"){	  	w=w-17;	  	h=h-15;	  }	  else if (browser=="Netscape Navigator"){	  	w=w-17;	  	h=h-15;	  }	  else if (browser=="Opera"){	  	w=w+20;	  	h=h+20;	  }  }  else if (OS=="Linux"){	  // Browser detection on LINUX OS	  if (browser=="Internet Explorer"){	  	w=w-0;	  	h=h-0;	  }	  else if (browser=="Netscape Navigator"){	  	w=w-0;	  	h=h-0;	  }	  else if (browser=="Opera"){	  	w=w-0;	  	h=h-0;	  }  }  //Prepare new pop-up window options  var settings = 'height=' + h + ',';  settings += 'width=' + w + ',';  settings += 'top=' + wint + ',';  settings += 'left=' + winl + ',';  settings += 'scrollbars=no,' + features;  win = window.open(mypage,myname,settings);  if (window.focus) {win.focus()}}//-->