
function OpenKaskalWindow(page)
{
	var topVal = (screen.height/2)-(500/2);
	var leftVal = (screen.width/2)-(500/2);
	
	footerWin = window.open(page,'kaskalWin','left=' + leftVal + ',top=' + topVal +  ',width=500,height=500,location=no,directories=no,toolbar=no,menubar=no,resizable=yes');
	footerWin.focus();
}

function OpenKaskalJobWindow(page)
{
	var topVal = (screen.height/2)-(500/2);
	var leftVal = (screen.width/2)-(800/2);
	
	footerJobWin = window.open(page,'kaskalJobWin','left=' + leftVal + ',top=' + topVal +  ',width=800,height=500,location=no,directories=no,toolbar=no,menubar=no,resizable=yes');
	footerJobWin.focus();
}






