﻿// JScript File
function opencloseacc(divid){
//alert('depp');
if (document.getElementById(divid).style.display=='none'){
document.getElementById(divid).style.display='inline';
}
else{
document.getElementById(divid).style.display='none';
}
}


var i=0;
function changeimage(divid){

if (i>=(imgs.length-1))i=-1;
//alert(i);
//alert(imgs.length);
i += 1;
document.getElementById(divid).style.backgroundImage=imgs[i];
       
    
}

function setidxbgimg(idxbgimg){
document.getElementById(idxbgimg).value = i;   
}

function popupBranchen(ctl,w,h,wndw) {
        var PopupWindow=null;
        settings='width='+ w + ',height='+ h + ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=no,dependent=no';
        PopupWindow=window.open(wndw + '.aspx?Ctl=' + ctl,'BranchePicker',settings);
        PopupWindow.focus();
}
    
    
function openiframe(frameId,source){
    if (document.getElementById(frameId).style.display == 'block'){
    document.getElementById(frameId).style.display = 'none';
    }
    else{
    document.getElementById(frameId).style.display = 'block';
    document.getElementById(frameId).src=source;
         }  
} 


function SetDate2(branche)
{    
//alert("depp");
    ctl = window.location.search.substr(1).substring(4);
    ctlf = ctl.substring(0,ctl.length -8) + 'frame1';   
    
   
    parent.document.forms[0].elements[ctl].value = branche;
    parent.document.getElementById(ctlf).style.display = 'none';
       
}

function post(mailadr1,mailadr2){
location.href='mailto:' + mailadr1 + '@' + mailadr2;
}
