﻿// JScript File

function PhotoPopUp( myId, myWidth, myHeight )
{
	window.open('photodetail.aspx?id='+myId,'filename','height='+myHeight+',width='+myWidth+',scrollbars=no');
}

function showHidePosition(eId)
{
    if(!document.getElementById) return;
    myElement = document.getElementById(eId);
    if (myElement.style.display == 'block') {
        myElement.style.display = 'none'
    } else {
        myElement.style.display = 'block'
        myElement.style.left = event.clientX - 200;
        myElement.style.top = event.clientY - 270;
        //myElement.getElementById(eId).focus();
    }
}

function hideAll() {
   var i, a, main;
   for(i=0; (a = document.getElementsByTagName("div")[i]); i++) {
     if(a.getAttribute("id").indexOf("extrainfo") != -1) {
        document.getElementById(a.getAttribute("id")).style.display = 'none';
     }
   }
}
