// JavaScript Document

function openWin(thePage){
var dWidth =screen.availWidth;
if (dWidth >= 1250){
	theWidth = "1280";
} else {
	theWidth = new String(dWidth);
}
var theTop = (screen.availHeight-900)/2;

window.open(thePage,"test02","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=yes,left=0,top="+theTop+",width="+theWidth+",height=800");
}
