function setPageSize(){
var pintHeight;
if (self.innerHeight) // all except Explorer
{
	pintHeight=(self.innerHeight-40);
	document.getElementById('main').style.height=pintHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)	// Explorer 6 Strict Mode
{
	pintHeight=(document.documentElement.clientHeight-40);
	document.getElementById('main').style.height=pintHeight;
}
else if (document.body) // other Explorers
{
	pintHeight=(document.body.clientHeight-40);
	document.getElementById('main').style.height=pintHeight;
}
}

function login() {
	comsOpenPopupSize(PPSLoginURL, 'Login', 370, 300, 'no', 'no');
}
