﻿// JScript File
function OpenWindow(location,title,width,height,controls)
{
	if (controls == "full")// Allow FULL browser controls
		urlparams = 'height='+screen.height+',width='+screen.width+',top=0,left=0,resizable,menubar,toolbar=yes,scrollbars=yes';
	else // Allow minimal browser controls - more for dialog boxes or News Release Large Images
		urlparams = 'height='+height+',width='+width+',top=5,left=5,resizable,scrollbars=yes';
   // alert(urlparams);
	reportWindow = window.open(location,title,urlparams);
	reportWindow.focus();
}

