﻿// JScript File

windowprops = "top=0,left=0,resizable=no" + ",width=" + screen.width +
",height=" + screen.height + ",fullscreen=yes" + ",scrollbars=auto";
function fullScreen(theURL) {
window.open(theURL, "popupPage", windowprops);
}

function GotoPaper(Obj)
{
	//parent.location.href = Obj.options[Obj.selectedIndex].value
	if (Obj.selectedIndex > 0) 
	window.open(Obj.options[Obj.selectedIndex].value)
}
