var myHeight = 0;
var myWidth = 0;
if (typeof(window.innerHeight) == 'number') {
// Non-IE
myHeight = window.innerHeight;
myWidth = window.innerWidth;
} else if (document.documentElement && document.documentElement.clientHeight) {
// IE
myHeight = document.documentElement.clientHeight;
myWidth = document.documentElement.clientWidth;
}
myHeight = myHeight - 201;
myWidth = myWidth;
document.write('<link rel="stylesheet" ',
	'type="text/css" media="screen" href="_crmslib/screen_css.cfm?height=',
	myHeight, '&width=',myWidth, '" />');

function refresh()
{
	window.location.reload()
}

