<!--
function openwin(dest, w, h){
	newwin = window.open(dest,"", "scrollbar=yes,width="+w+",height="+h+",resizable=yes");
}
function openWinCrom(dest, w, h){
	newwin = window.open(dest,"", "scrollbar=yes,width="+w+",height="+h+",resizable=yes,menubar=yes");
}

function openimg(imgname, wh){
	imgurl = escape(imgname);
	var width=400;
	var height=500;
	if(wh=='w'){
		width=600;
 		height=420;
	}
	if(wh=='L'){
		width=550;
		height=550;	
	}
	newwin = window.open("/imgwin.htm?"+imgurl,"", "scrollbars=yes,width="+width+",height="+height+",resizable=yes");
	newwin.focus();
}

function openimgCh(imgname, wh){
	imgurl = escape(imgname);
	var width=400;
	var height=500;
	if(wh=='w'){
		width=600;
 		height=420;
	}
	if(wh=='L'){
		width=550;
		height=550;	
	}
	newwin = window.open("/imgwin-ch.htm?"+imgurl,"", "scrollbars=yes,width="+width+",height="+height+",resizable=yes");
}

function openwin(pageurl, title, width, height){
		newwin = window.open(pageurl, title, "scrollbars=yes,width="+width+",height="+height+",resizable=yes");
		newwin.focus();
}

function openCapImg(imgsrc, typ){
  	var newwin = window.open("/capimgwin.htm?img="+escape(imgsrc)+"&typ="+escape(typ),"FullImage", "scrollbars=yes,width=620,height=480,resizable=yes");
	newwin.focus();
}

function openLarge(dest){
	 newwin=window.open(dest);
	 newwin.focus();
}

//-->
