function popWin(url,name,w,h,extra)
{
str="height="+h+",width="+w+",scrollbars=1"+extra;
if(parseInt(navigator.appVersion)>3)
str+=",left="+(screen.width -w)/5+",top="+parseInt((screen.height -h)/5);
win=window.open(url,name,str);
}

