// JavaScript Document
function winOpen(fleOpen,w,h)
{
	var newWin=window.open(fleOpen,"popup","width="+w+",height="+h+",scrollbars=yes");
	newWin.focus();
}
function imgOpen(fleOpen)
{
	var newImg=window.open("../imgWin.asp?imgFl="+fleOpen,"image","width=500,height=400,scrollbars=yes");
	newImg.focus();
}
