
function openwindow(url, width, height)
{


leftPos = 0
topPos = 0
if (screen) {
leftPos = (screen.width / 2) - 270
topPos = (screen.height / 2) - 349
}	
	window.open(url,"ElementWin","menubar=0,resizable=1,width="+width+",height="+height+", scrollbars=yes,left="+leftPos+",top="+topPos);
}

function openwindow2()
{
	window.open("foreign-visitors.php","mywindow","menubar=0,resizable=1,width=617,height=600,scrollbars=yes");
}

