function mypopup(url)
{
	newwindow=window.open(url,'name','width=700,height=550,top=150,left=100,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=yes,location=no');
	if (window.focus) {newwindow.focus()}

}

function mypopup2(url,name,arguments)
{
	newwindow=window.open(url,name,arguments);
	if (window.focus) {newwindow.focus()}

}
