// Layer toggling to hide or show
function toggle( targetId ){ 
  if (document.getElementById){ 
        target = document.getElementById( targetId ); 
           if (target.style.display == "none"){ 
              target.style.display = ""; 
           } else { 
              target.style.display = "none"; 
           } 
     } 
}
// Manual hide or show Layer
function hideLyr(contt) {
   document.getElementById(contt).style.display='none';
}
function showLyr(contt) {
   document.getElementById(contt).style.display='';
}
function appendLink(obj) {
	//obj.href = '#';
	window.location = obj.href + '?CampaignId=' + v8;
	return false;
}
function appendLinkInternal(obj) {
	//obj.href = '#';
	window.location = obj.href + '?CampaignId=' + v8 + '&regurl=' + v9;
	return false;
}
