/**
* Pop-Up Window Code
* @Copyright (C) 2004 OSN
**/

var popup=0;
function newWindow(newURL,left,top,width,height)
{
	popup = window.open(newURL,'popup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
