/*
 WMS version 3.0 copyright Henrik C Wiberg 199-2008 (http://wart.dk, hcw@wart.dk)
 */ 
function keyHandle(){
    key = window.event.keyCode;
     if(event.altKey && key==117){
        window.open('http://www.wibergs.dk/admin/');
    }
}
document.onkeydown = keyHandle;

// Variabelt vindue
function variold(sUrl,iHeight,iWidth){
    window.open(sUrl,'shopWindow' ,'width='+iWidth+',height='+iHeight);
}

function vari(url,name,win_height,win_width) {
	pos_horizon = ((screen.width/2)-(win_width/2));
	pos_vertical = ((screen.height/2)-(win_height/2));
	window.open(url,name,"width="+win_width+",height="+win_height+",top="+pos_vertical+",left="+pos_horizon);
	}

// pop i medlemssektion
function nytvindue3(x,y){
			window.open(x,y,'scrollbars=yes,width=700,height=750');
			}
			
