// JavaScript Document

function popupform(myform, windowname)
{

var win = null;
w = 350;
h = 240;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',location=no,scrollbars=no,resizable=no';
win = window.open('',windowname,settings);
if(win.window.focus){win.window.focus();}
myform.target=windowname;
return true;
}