
function newWindowStandard(loc) {
	window.open(loc, 'standard', 'height=400,width=430,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=1,maximize=no');
	return false;
}

var myWin;
function viewSampleReports(sURL)
{
    //var sURL;
    //sURL = '/products/reports/';   
	if(myWin) {
		if(!myWin.closed) {myWin.focus();}
	}
	myWin = open(sURL,'loadReports','width=800,height=575,scrollbars=yes,resizable=yes');
	myWin.focus();
}

function viewEULA()
{
    var sURL;
    sURL = '/EULA/';   
	if(myWin) {
		if(!myWin.closed) {myWin.focus();}
	}
	myWin = open(sURL,'loadEULA','width=750,height=575,scrollbars=yes,resizable=yes');
	myWin.focus();
}

function imgRollover(imgId, imgLoc) {
	document.getElementById(imgId).src = imgLoc;
}