// JavaScript Document
function openImage(theURL, type){
	if(type == 1){
		var win = window.open(theURL,'image','status=yes,width=420,height=620');
	}else if(type == 2){
		var win = window.open(theURL,'image','status=yes,width=520,height=620');
	}else{
		var win = window.open(theURL,'image','status=yes,width=620,height=620');
	}
	win.focus();
}
