function MyOpen(myPic) {	
	MyWin=window.open("","Big","width=700,height=700,scrollbars=yes,resizable=yes");        
	MyWin.focus();	
	MyWin.document.open();	
	MyWin.document.write('<HTML><HEAD><meta http-equiv="Content-Type" content="text/html; charset=windows-1251">');
	MyWin.document.write("<TITLE>Photo: "+myPic+"</TITLE></HEAD><BODY BGCOLOR='White'>");
	MyWin.document.write("<TABLE WIDTH='100%'><TR VALIGN='MIDDLE'><TD ALIGN='CENTER' VALIGN='MIDDLE'>");
	MyWin.document.write("<IMG VALIGN='MIDDLE' SRC='"+myPic+"'>");
	MyWin.document.write("</TD></TR></TABLE>");
	MyWin.document.write("</BODY></HTML>");
	MyWin.document.close();
};
function MyOpenC(myPic) {	
	MyWin=window.open("","Big","width=800,height=650,scrollbars=no,resizable=yes");        
	MyWin.focus();	
	MyWin.document.open();	
	MyWin.document.write('<HTML><HEAD><meta http-equiv="Content-Type" content="text/html; charset=windows-1251">');
	MyWin.document.write("<TITLE>Photo: "+myPic+"</TITLE></HEAD><BODY BGCOLOR='White'>");
	MyWin.document.write("<TABLE WIDTH='100%'><TR VALIGN='MIDDLE'><TD ALIGN='CENTER' VALIGN='MIDDLE'>");
	MyWin.document.write("<IMG VALIGN='MIDDLE' SRC='"+myPic+"'>");
	MyWin.document.write("</TD></TR></TABLE>");
	MyWin.document.write("</BODY></HTML>");
	MyWin.document.close();
};
function showF(OID){
	document.getElementById(OID).style.borderColor="White";
	document.getElementById(OID).style.borderStyle="dotted";
	document.getElementById(OID).style.borderWidth="3px";
};
function hideF(OID){
	document.getElementById(OID).style.borderColor="Black";
	document.getElementById(OID).style.borderStyle="solid";
	document.getElementById(OID).style.borderWidth="3px";
};
function showPic() {
 today = new Date();
 nm=today.getDate();
 nm=nm%14+1;
 document.images["DayImage"].src="PORT_BIG/smix"+String(nm)+".jpg";
}

