/*
 WMS version 3.0 copyright Henrik C Wiberg 199-2012 (http://webmastersystem.dk, info@webmastersystem.dk)
 */ 
function keyHandle(){
    key = window.event.keyCode;
     if(event.altKey && key==117){
        window.open('http://www.slagter.dk/admin/');
    }
}
document.onkeydown = keyHandle;
// rulleteknik
function openClose(funkID)
{
  var obj = document.getElementById(funkID)
  if(obj.style.display=='none')
    obj.style.display='block';
  else
    obj.style.display='none';
}

var d = document;
    function gE(id){return d.getElementById(id)};
    function changeSubmit(){
        if(gE('samhandelsbetingelser').checked)
            gE('mySubmit').disabled = false;
        else    
            gE('mySubmit').disabled = true;
    }
    
    
// 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);
	}


// Manual popup
function manualpop(x,y){
			window.open(x,y,'scrollbars=yes,width=700,height=750');
			}
// pop i medlemssektion
function nytvindue3(x,y){
			window.open(x,y,'scrollbars=yes,width=700,height=750');
			}
			
// Åbner info om produkter
var oldObj = null;
function openClose(funkID)
{
  var obj = document.getElementById(funkID)
  if(obj.style.display=='none'){
    obj.style.display='block';
    if(oldObj)
      oldObj.style.display = 'none';
    oldObj = obj;
  }else
    obj.style.display='none';
    oldObj = null;
}
// Fotos popup

