		
function openNewWindow(fileName,windowName,theWidth,theHeight) 
{
	if (windowName == "newWindow") 
	{
		windowName = new String(Math.round(Math.random() * 100000));
	}
	window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+theWidth+",height="+theHeight)
}

function openScrollWindow(fileName,windowName,theWidth,theHeight) 
{
	if (windowName == "newWindow") 
	{
		windowName = new String(Math.round(Math.random() * 100000));
	}
	window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width="+theWidth+",height="+theHeight)
}

function openStandardWindow(fileName,windowName,theWidth,theHeight) {
	if (windowName == "newWindow") 
	{
		windowName = new String(Math.round(Math.random() * 100000));
	}
	window.open(fileName,windowName,"toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight)
}

function openChecker() 
{
	window.open("../home/checkerpopup.aspx","Checker","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=650,height=220,top=200");
}

function openTAC() 
{
	window.open("../home/tac.aspx","TAC","toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=0,width=500,height=300");
}