﻿// Register Button visible 
//function toReg1() 
//{
//		if (document.getElementById) {
//      theSelect = document.getElementById (divName);
//      if (theSelect) theSelect.style.visibility = isOn ? "visible" : "hidden";
//    } else if (document.all) {
//      theSelect = document.all (divName);
//      if (theSelect) theSelect.style.visibility = isOn ? "visible" : "hidden";
//    } else if (document.layers) {
//      theSelect = document[divName];
//      if (theSelect) theSelect.visibility = isOn ? "show" : "hide";
//}

//function redirectPage(lan) 
//{
//     var url = document.location.href.toLowerCase().
//    replace("ru.","www.").replace("en.","www.").replace("am.","www.");       
//    document.location.href=url;
//    if (lan!="en")
//       document.location.href=document.location.href.replace("http://www.armhr.am", "http://" + lan + ".armhr.am").replace("http://armhr.am", "http://" + lan + ".armhr.am")    
//    else
//       document.location.href=document.location.href.replace("http://www.armhr.am", "http://www.armhr.am");
//}

function HideVisiblePopup(id) 
{
	var Elem = document.getElementById();	
	
	Elem.style.display == "none";
}	

