/* SCRIPT FOR Å LAGE POP-UP VINDU */
function popUp(URL,width,height){
    day = new Date();
    id = day.getTime();
	action = "page" + id;
	action += " = window.open(URL,'" + id + "','toolbar=1, scrollbars=1, location=0, statusbar=0, menubar=1, resizable=1, width="+width+", height="+height+", left=72, top=20')";
    eval(action);
}