<!--
function popUp()
{
	var height=window.document.body.clientHeight; 
	var width=window.document.body.clientWidth;

	if(arguments[1]) 
		width = arguments[1] + 50;
	if(arguments[2])
		height = arguments[2] + 50;
	
	var newpage = arguments[0];
	var newWindow = window.open(newpage, "", "height="+height+",width="+width+",directories=no, location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar=no");
}
//-->