// JavaScript Document
var Browser=0;
if ( navigator.appName == "Netscape" || parseInt(navigator.appVersion) >= "4") {
        Browser=1;
} else {
         Browser=0; // IE 3.0
}

function OpenWin ( img_src, w, h, alt1, alt2, lan ) {
	if ( ! Browser ) return true;
	if (lan="en"){ var cs='iso-8859-1';}else {var cs='utf-8';}
	var d=new Date;
	var newwin = window.open('', w+'_'+h+'_'+d.getSeconds()+'_'+d.getMinutes() , 'resizable=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no,width=' + w + ',height=' + h );
      newwin.document.open();
      newwin.document.write(
                                "<html>" +
								"<head>" +
                                "<title>Iran Mountain Zone Photo Gallery</title>" +
								"<meta http-equiv=\"Content-Type\" content=\"text/html; charset="+cs+"\">"+
                                "<script type=\"text/javascript\" src=\"showpic.js\"></script>"+
								"</head>"+
                                //"<body onmousedown=\"disable()\">" +
                                "<body>" +
								"<table align=\"center\"><tr><td style=\"font-family: Arial,helvetica,sans-serif; text-align: center; color:#000080; background-color: #FFFFFF\">"+
                                "<img src=\"" + img_src +"\">"+
                                "<p style=\"font-size: 16px\">"+alt1+"</p>"+
								"<p style=\"font-size: 12px\">"+alt2+"</p>"+ 
								"</td></tr></table>"+
								"</body>" +
                                "</html>");
        newwin.document.close();
        newwin.window.focus();
        return false;
}

//function disable()
//{
//if (event.button == 2 || event.button == 3)
//{
//alert("All Rights Reserved.\nPlease Contact www.MountainZone.ir before using the picture.")
//}
//}

