function OpenWindow(url, w, h) 
{
var
	options = "width=" + w + ",height=" + h + ",";
	options += "resizable=yes,scrollbars=yes,status=yes,menubar=no,toolbar=no,location=no,directories=no,copyhistory=0,left=10,top=10,screenX=175,screenY=300";
var
	newWin = window.open(url, 'newWin', options);newWin.focus();
}

