<!-- 
function popWin(theURL,winName,features) { //v2.0
	var x = 100;
	var y = 125;
	if (navigator.appName.indexOf("Microsoft")>=0){
		features+=',left=' + x +',top=' + y;
	}
	else{
		features+=',screenX=' + x + ',screenY=' + y;
	}
	var win = window.open(theURL,winName,features);
	win.focus();
}
// -->
	