// set visibility of an element

function setvisible(ID,status){
  document.getElementById(ID).style.visibility=status;
}



// function to force very soft reloading of pages when browser resizes

function onResizeProc(){window.history.go(0);}



// function for the footer of each page to re-space vertically

function resize_wrap_padding(){
  var wrap_ele=document.getElementById("wrap");
  var wrap_height=wrap_ele.offsetHeight;
  var win_height=document.documentElement.clientHeight;
  
  var spare_vspace=win_height-wrap_height-40; // allow for margins;
  var wrap_tmargin=(Math.round(spare_vspace*0.4))+20;
  
  if (wrap_tmargin>0){
    wrap_ele.style.marginTop=wrap_tmargin + "px";
  }
}


// function to make maincontentinner scroll if needed

function resize_maincontentinner(){
  var win_height=document.documentElement.clientHeight;
  var ele=document.getElementById("maincontentinner");
  var maincontent_clientheight=ele.clientHeight;
  var max_height=win_height-170-30-28-10; // allowing for top banner, margins and padding
  if(max_height<350)max_height=370;
  if(maincontent_clientheight>max_height){
    maincontent_clientheight=max_height-16;
    ele.style.height=maincontent_clientheight + "px";
  }
}


blatstr="";
blatstr+="mai";
blatstr+="l@s";
blatstr+="ilv";
blatstr+="erf";
blatstr+="en-";
blatstr+="web";
blatstr+=".c";
blatstr+="om";

function blat(){
  document.write("<A href='mailto:" + blatstr + "'>" + blatstr + "</a>");
}


// function to highlight whichever element is in use in left menu

function highlight(ID){
  document.getElementById(ID).style.color="#f91e06";
}


// function to force horizontal spacing as IE was getting it wrong


function sort_hspace(){
  var minw=document.getElementById("sfw").offsetWidth + document.getElementById("maincontentinner").offsetWidth + 30;
  var win_width=document.documentElement.clientWidth;
  var width_to_set=minw;
  if(width_to_set<win_width){
    width_to_set=Math.round(minw+((win_width-minw)*0.3));
  }
    
  document.getElementById("wrap").style.width=width_to_set + "px";
}



var c_images=new Array(
"img_7278_tr_h_150.jpg",
"img_7280_h150.jpg",
"img_7281_h150.jpg",
"img_7282_h150.jpg",
"img_7283_tr_h150.jpg",
"img_7284_h150.jpg",
"img_7285_h150.jpg",
"img_7286_h150.jpg",
"img_7287_h150.jpg",
"img_7288_tr_h150.jpg",
"img_7289_h150.jpg",
"img_7290_h150.jpg",
"img_7292_tr_h150.jpg",
"img_7293_h150.jpg",
"img_7294_tr_h150.jpg",
"img_7295_h150.jpg",
"img_7296_h150.jpg",
"img_7297_h150.jpg",
"img_7297_tr_h150.jpg",
"img_7298_tr_h150.jpg",
"img_7299_h150.jpg",
"img_7300_h150.jpg",
"img_7301_h150.jpg",
"img_7302_h150.jpg",
"img_7303_h150.jpg",
"img_7304_h150.jpg",
"img_7305_h150.jpg",
"img_7306_h150.jpg",
"img_7307_h150.jpg",
"img_7308_tr_h150.jpg",
"img_7309_tr_h150.jpg",
"img_7310_h150.jpg",
"img_7310_tr_h150.jpg",
"img_7311_h150.jpg",
"img_7312a_tr_h150.jpg",
"img_7312b_tr_h150.jpg",
"img_7313_tr_h150.jpg",
"img_7314_h150.jpg",
"img_7315_h150.jpg",
"img_7316_tr_h150.jpg",
"img_7318_h150.jpg",
"img_7319_h150.jpg",
"img_7320_h150.jpg",
"img_7321_h150.jpg",
"img_7321_tr_h150.jpg",
"img_7322_h150.jpg",
"img_7323_h150.jpg",
"img_7324_h150.jpg",
"img_7324_tr_h150.jpg",
"img_7325_h150.jpg",
"img_7326_h150.jpg",
"img_7327_h150.jpg",
"img_7327_tr_h150.jpg",
"img_7328_h150.jpg",
"img_7329_h150.jpg",
"img_7330_h150.jpg",
"img_7330_tr_h150.jpg",
"img_7331_h150.jpg",
"img_7333_h150.jpg",
"img_7333_tr_h150.jpg",
"img_7335_tr_h150.jpg",
"img_7336_tr_h150.jpg",
"img_7338_h150.jpg",
"img_7339_tr_h150.jpg",
"img_7340_h150.jpg",
"img_7341_tr_h150.jpg",
"img_7342_h150.jpg",
"img_7343_tr_h150.jpg",
"img_7344_h150.jpg",
"img_7344_tr_h150.jpg",
"img_7345_tr_h150.jpg",
"img_7346_h150.jpg",
"img_7348_tr_h150.jpg",
"img_7349_tr_h150.jpg",
"img_7350_tr_h150.jpg",
"img_7352_tr_h150.jpg",
"img_7353_tr_h150.jpg",
"img_7354_tr_h150.jpg",
"img_7364_tr_h150.jpg",
"img_7366_h150.jpg",
"img_7366_tr_h150.jpg",
"img_7367_h150.jpg",
"img_7369_tr_h150.jpg",
"img_7370_tr_h150.jpg",
"img_7371_tr_h150.jpg",
"img_7373_tr_h150.jpg",
"img_7374_tr_h150.jpg",
"img_7375_h150.jpg",
"img_7375_tr_h150.jpg",
"img_7379_tr_h150.jpg",
"img_7380_tr_h150.jpg",
"img_7384_tr_h150.jpg",
"img_7385_tr_h150.jpg",
"img_7387_tr_h150.jpg");



function insert_c_img(){
  var i=Math.round(Math.random()*200);
  i=i%c_images.length;
  document.write("<img class=cimg src='img/" + c_images[i] + "'>");
}

