function d(el){
	return document.getElementById(el);
}

function LDshow(){
 if(d("LDTip").style.display=="none"){
   d("LDTip").style.display="block";
   d("LDTip").style.left="245px";
  }
}
function LDhide(){
 if(d("LDTip").style.display=="block"){
   d("LDTip").style.display="none";
  }
}

function Web_Info(){
   if(d("HaveWeb").checked==true){
      d("webDIV").style.display="block";
	  d("cltDIV").style.display="none";
   }
    if(d("LD").checked==true){
      d("cltDIV").style.display="block";
	  d("webDIV").style.display="none";
   }
   if(d("custom").checked==true){
      d("webDIV").style.display="none";
	  d("cltDIV").style.display="none";
   }   
}

function clt_change(url){
  if(d("clt").value != ""){
	d("clt_text").innerHTML="<a href=\"javascript:CreatePopup('"+url+"')\">Click here to CHANGE<br>the selected design</a>";
	}else{
	d("clt_text").innerHTML="<a href=\"javascript:CreatePopup('"+url+"')\">Haven't chosen a template yet?<br>Choose one here</a>";
	}
}

function CreatePopup(url){
winopen=window.open(url,'PopWindow','width=800,height=550,toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes,menubar=yes');
winopen.focus();
}

if(window.attachEvent)
    window.attachEvent("onload",setListeners);

  function setListeners(){
    inputList = document.getElementsByTagName("INPUT");
    for(i=0;i<inputList.length;i++){
      inputList[i].attachEvent("onpropertychange",restoreStyles);
      inputList[i].style.backgroundColor = "";
    }
    selectList = document.getElementsByTagName("SELECT");
    for(i=0;i<selectList.length;i++){
      selectList[i].attachEvent("onpropertychange",restoreStyles);
      selectList[i].style.backgroundColor = "";
    }
  }

  function restoreStyles(){
    if(event.srcElement.style.backgroundColor != "")
      event.srcElement.style.backgroundColor = "";
  }
