function popUpMaximized(url)
{
	window.open(url, "", "height=" + (screen.height - 20) + "px,left=0px,top=0px,width=" + (screen.width - 4) + "px;");
}

function customPopUp(url, width, height)
{
	window.open(url, "", "height=" + height + "px,left=0px,top=0px,width=" + width + "px,resizable=1;");
}