// JavaScript Document
function open_img(img_path){
	myImage = new Image(); 
	myImage.src = img_path;
	var w = myImage.width != 0?myImage.width:350;
	var h = myImage.height!= 0?myImage.height:400;
	var new_window = window.open(img_path,'preview','location=0,status=0,scrollbars=1,width='+(w+30)+',height='+(h+50));
}
function download(img_path){
	var new_window = window.open('./downloads/download.asp','preview','location=0,status=0,scrollbars=1,width='+(w+30)+',height='+(h+50));
}
function redirect(url){
var browserName=navigator.appName; 
if (browserName=="Netscape")
{ 
window.location=url;
}
else 
{ 
 if (browserName=="Microsoft Internet Explorer")
 {
  window.location=url;
 }
 else
  {
   window.location=url;
   }
}	
}
function open_popup(url,w,h){
	var new_window = window.open(url,'preview','location=0,status=0,scrollbars=0,width='+w+',height='+h)	
}
