function openWin(fName,nWinType) {
	var nWidth, nHeight, oWin;
	if (nWinType==1) {
		nWidth=375;
		nHeight=500;
	}
	if (nWinType==2) {
		nWidth=500;
		nHeight=375;
	}
	fName=fName.replace(".jpg","");	
	oWin=window.open("",fName,"width=" + nWidth + ",Height=" + nHeight + ",menubar=no,toolbar=no,left=10,top=10,screenX=10,screenY=10");
	oWin.document.open();
	oWin.document.write("<html><body marginheight=0 marginwidth=0 topmargin=0 leftmargin=0>");
	oWin.document.write("<img src='images/large/"+fName+".jpg'>");
	oWin.document.write("</body></html>");
	oWin.document.close();
	oWin.focus();
}
function DrawBorder(oThis){
	oThis.border=1;
}
function RemoveBorder(oThis){
	oThis.border=0;
}
