var newwindow;
function myOpen(url)
{
	newwindow=window.open(url,'name','height=400,width=800,menubar=no,toolbar=yes,location=no,directories=no,scrollbars=yes,status=no,resizable=yes,copyhistory=no,top=0');
	if (window.focus) {newwindow.focus()}
}