/* openWin by never.no openWin@never.no */
var my_popup,top,left;
function openWin( url, width, height )
{
        if (my_popup)
        {
	      if ( !my_popup.closed )
	      {
			my_popup.close();
	      }
        }
	left=(screen.width)?(screen.width-width)/2:((800-width)/2);top=(screen.height)?(screen.height-height)/2:((60-height)/2);
	var vinduoptions ="toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,top="+top+",left="+left+",width="+width+",height="+height;
        my_popup = window.open(url,"win",vinduoptions);
}

function nothing() {}

