//For opening pop up

function popZoom(path) {
    var w=800;
    var h=600;
	urlImage = "../pages/popZoom.asp?path=" + path;
	var leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
    var topPosition = (screen.height) ? (screen.height-h)/2 : 0;
    var ppz=window.open(urlImage,'ppz','width='+w+',height='+h+',top='+topPosition+',left='+leftPosition+',scrollbars=yes,resizable=yes,status=no,location=no,toolbar=no,menubar=no,directories=no');
    ppz.focus();
}

