var app = navigator.appName.charAt(0);var ver = navigator.appVersion.charAt(0);function newWindow(url,wname,wx,wy){	x = (screen.width  - wx) / 2;	y = (screen.height - wy) / 2;	if ( (app == "N" && ver > 2) || (app == "M" && ver > 3) ) {	window.open(url,wname,"directories=no,location=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,"+"left="+x+",top="+y+",width="+wx+",height="+wy);	return false;	} else {	return true;	}}