function openWindow(url, mywidth, myheight, name)
{
var features = "width="+mywidth+",height="+myheight+",left=255,top=150,scrollbars=no";
popupWin = window.open(url,name,features);
if (window.focus) {popupWin.focus();}
}


