function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function open_img(img) {
	myimg=new Image;
	myimg.src=img;
	
	var sizex=285;
	var sizey=400;
	
	var w=sizex+31;
	var h=sizey+30;
	var newnd=window.open(img,"image_view","width="+w+",height="+h+",scrollbars=no,resizable=no,");
	
	//newnd.focus();
	newnd.document.bgColor="#FFFFFF";
}

function open_img2(img) {
	myimg=new Image;
	myimg.src=img;
	
		var sizex=400;
		var sizey=285;

	var w=sizex+31;
	var h=sizey+30;
	var newnd=window.open(img,"image_view","width="+w+",height="+h+",scrollbars=no,resizable=no,");
	
	//newnd.focus();
	newnd.document.bgColor="#FFFFFF";
}
