// JavaScript Document - Profile Window open

function premisesopen()
{
	premiseswindow = window.open("premises.htm","","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,width=550,height=500,left=280,top=20");
}
function eecsopen()
{
	eecswindow = window.open("eecs.htm","","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,width=550,height=500,left=150,top=20");
}
function lrqaopen()
{
	lrqawindow = window.open("lrqa.htm","","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,width=550,height=500,left=150,top=20");
}
function historyopen()
{
	historywindow = window.open("history.htm","","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=1,resizable=0,width=750,height=500,left=150,top=20");
}


function allclose()
{
	if(window.premiseswindow)
		premiseswindow.close();
	if(window.eecswindow)
		eecswindow.close();
	if(window.lrqawindow)
		lrqawindow.close();
	close();
}