function OpenMe(u,t,w,h,type) {
  if (type==1) {
	  window.open(CONTEXT_PATH + '/images/'+u,'','width='+w+',height='+h+',menubar=no,titlebar=no,status=no');
  } else {
    if (navigator.appName=="Microsoft Internet Explorer") {
      window.open(CONTEXT_PATH + '/images/portfolio/'+u,'','width='+w+',height='+h+',menubar=no,titlebar=no,status=no');
    } else {
      window.open(CONTEXT_PATH + '/images/portfolio/'+u,t,'width='+w+',height='+h+',menubar=no,titlebar=no,status=no');
    }
  }
}

function getBindedOpenPhoto(imagePath, width, height) {
    return function () {
         OpenMe(imagePath, '', width, height, '1');
    }    
}

function bindPhotos() {
    var images = document.getElementsByTagName("img");
    for(var i = 0; i < images.length; i++) {
    	var image = images[i];
    	if(image.className == "employeePhoto") {
    	     image.onclick = getBindedOpenPhoto(getOriginalPath(image), 300, 450); 
    	}
    	if(image.className == "eventPhoto") {
    	     image.onclick = getBindedOpenPhoto(getOriginalPath(image), 800, 600); 
    	}
    }
}

function getOriginalPath(image) {
    return image.src.replace(/.*prev\//, "photos/");
}