function popup(url,width,height) {
args=width?"width="+width+",":"width=550,";
args+=height?"height="+height:"height=600";
args+=",scrollbars=yes,status=no,resizable,location=no";
win=window.open(url.href,'popWin2',args);
}

function new_page(url,width,height)
{
egenskaper="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=10, top=10";

egenskaper+=",width="+width;
egenskaper+=",height="+height;
unik=new Date();
unik=unik.getSeconds()+"_"+unik.getMinutes()+"_"+unik.getHours();
window.open(url,unik,egenskaper);
}
//-->
