function show(id){ if(document.getElementById){ 
var q = document.getElementById("box"+ id); 
var o = document.getElementById("o" + id); 
var c = document.getElementById("c" + id); 
if(q.style.display == "block"){ 
q.style.display = "none"; 
o.style.display = "block"; 
c.style.display = "none"; 
}else{ 
q.style.display = "block"; 
o.style.display = "none"; 
c.style.display = "block"; 
} return false; 
}else{ return false; } }




 window.onload = setemail;
		


function setemail(){
var combo;
if(typeof(window.name) != "undefined"){
combo = document.getElementById("ctl01_ctl03_mailformrepeater_ctl00_ctl00_Subject");
if(combo){
 
}else{
 combo = document.getElementById("ctl01_ctl02_mailformrepeater_ctl00_ctl00_Subject");
}

if(combo){
combo.disabled = true;

var index = 0;

for(var i = 0; i < combo.options.length; i++){
if(combo.options[i].text == window.name){
index = i;
}

combo.selectedIndex = index;
}
}
}	
}