// popup function
function popitup(url)
{
newwindow=window.open(url,'name','width=640,height=480,resizable=1,toolbar=0,scrollbars=1');
if (window.focus) {newwindow.focus();}
return false;
}

