var newwindow;
function popwindow(url)
{
newwindow=window.open(url,'name','width=1024,height=768,top=20,resizable=no,scrollbars=yes,toolbar=no,status=no');
if (window.focus) {newwindow.focus()}
}
