// JavaScript Document

function showNow(width,height,windowname)
{
	
	parameters = "status=0,scrollbars=yes,resizable=yes,toolbar=no,menubar=no,screenX=50,screenY=50,top=50,left=50,titlebar=no,width=" + width + ",height=" + height;
	//alert(parameters);
	window.open("",windowname, parameters);  
}