// JavaScript Document
function setwindowsize(intTargetWindowWidth, intTargetWindowHeight)
{
var strClientType;
var intWindowWidth = 0, intWindowHeight = 0;						 
if( typeof( window.innerWidth ) == 'number' ) {
	//Non-IE
	strClientType = "Non-IE";
	intWindowWidth = window.innerWidth;
	intWindowHeight = window.innerHeight;						    
} else {
if( document.documentElement &&
	( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	//IE 6+ in 'standards compliant mode'
	strClientType = "IE 6+ - standards compliant mode";
	intWindowWidth = document.documentElement.clientWidth;
	intWindowHeight = document.documentElement.clientHeight;
} else {
if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	//IE 4 compatible
	strClientType = "IE 4 compatible";
	intWindowWidth = document.body.clientWidth;
	intWindowHeight = document.body.clientHeight;
	}
}
}				
var blnResizedWidth = false;
if((intWindowWidth < intTargetWindowWidth) || (intWindowHeight < (intTargetWindowHeight - 60)))
{
	self.resizeTo(intTargetWindowWidth,intTargetWindowHeight+70);				
}
}
