// JavaScript Document
        function expandcollapse(obj,row)
        {
            var div = document.getElementById(obj);
            //var img = document.getElementById('div' + obj);
            //alert(div);
            
            if (div.style.display == "none")
            {
                div.style.display = "block";
                /*if (row == 'alt')
                {
                    img.src = "../App_Themes/Default/images/hardcoded/minus.gif";
                }
                else
                {
                    img.src = "../App_Themes/Default/images/hardcoded/minus.gif";
                }
                img.alt = "Close candidate's detail";*/
            }
            else
            {
                div.style.display = "none";
                /*if (row == 'alt')
                {
                    img.src = "../App_Themes/Default/images/hardcoded/plus.gif";
                }
                else
                {
                    img.src = "../App_Themes/Default/images/hardcoded/plus.gif";
                }
                img.alt = "Expand to show candidate's detail";*/
            }
        } 
		function OutLink(img,imgPath)
		{
			//imgLink.src="img/b_lk.jpg";
			img.src=imgPath;
		}
		function OverLink(img,imgPath)
		{
			//imgLink.src="img/b_lk1.jpg";
			img.src=imgPath;
		}
		/*function OutLink(img,imgPath)
		{
			//img.src="img/b_lk.jpg";
			img.src=imgPath;
		}
		function OverLink(img,imgPath)
		{
						alert(img);
			alert(imgPath);
			//img.src="img/b_lk1.jpg";
			img.src=imgPath
		}*/
function clickHome()
{
	window.location = 'index.htm';
}
function clickGallery()
{
	window.location = 'Gallery.htm';
}
function clickLocation()
{
	window.location = 'Location.htm';
}
function clickLink()
{
	window.location = 'Link.htm';
}
function clickContact()
{
	window.location = 'Contact.htm';
}
//no right click
		var message="";
		function clickIE() {if (document.all) {(message);return false;}}
		function clickNS(e) {
		if
		(document.layers||(document.getElementById&&!document.all))
		{
		if (e.which==2||e.which==3) {(message);return false;}}}
		if (document.layers)
		{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
		else
		{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
		document.oncontextmenu=new Function("return false")