﻿
function Moredetails(tagName,tblName)
{
	document.getElementById(tagName).style.display=(document.getElementById(tagName).style.display=='none'?'inline':'none');
	document.getElementById(tblName).style.backgroundColor = '#fff'; 

	if (document.getElementById(tagName).style.display=='inline'){
	document.getElementById(tblName).style.backgroundColor = '#e4eef8';
	}
}

function Lessdetails(tagName,tblName)
{
	document.getElementById(tagName).style.display=(document.getElementById(tagName).style.display=='none'?'inline':'none');
	document.getElementById(tblName).style.backgroundColor = '#fff'; 
	if (document.getElementById(tagName).style.display=='none'){
	//	document.getElementById(tagName+'A').innerHTML = '��� ����';
	} else {
	//	document.getElementById(tagName+'A').innerHTML = '����';
	}
}

function popup(id)
{
	window.open(""+id, "_blank","toolbar=no, titlebar=no, fullscreen=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=700, height=400")
}

function popup500(id)
{
	window.open(""+id, "_blank","toolbar=no, scrollbars=1, resizable=no, status=no, copyhistory=no, location=no, menubar=no, width=790, height=650")
}
function popup650(id)
{
	window.open(""+id, "_blank","toolbar=no, titlebar=no, fullscreen=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=680, height=680")
}
  var lastQuestId = 0;
  function toggleQuest(curId) {
        cntnrObj = document.getElementById("cntnrdiv_" + curId);
        cntnrImg = document.getElementById("Img_" + curId);
        if (cntnrObj) {
            if (lastQuestId == curId) {
                lastQuestId = 0;
                cntnrObj.style.display = 'none';
                cntnrImg.src = 'images/location/LocOff.jpg';
            } else {
                if (lastQuestId != 0){
                    oldCntnrObj = document.getElementById("cntnrdiv_" + lastQuestId);
                    oldCntnrObj.style.display = 'none';
                    cntnrImg.src = 'images/location/LocOn.jpg';
                }
                lastQuestId = curId;
                cntnrObj.style.display = 'inline';
                cntnrImg.src = 'images/location/LocOn.jpg';
            }
        }
    }
