// (c)2000 JKD
// http://jardovo.misto.cz
// jkd@mail.cz

// This JavaScript is Emailware. If you want, you can send me message via email.
// You can distribute and use this JavaScript freely, but don't remove these comments. Thanks.


var imgExt="gif";
var imgPath="../images/";


lang=""+window.location;

if (lang.indexOf("cesky")!=-1)
{
	languageVersion="cesky";
}
else
	if (lang.indexOf("english")!=-1)
	{
	languageVersion="english";
	}
	else
		if (lang.indexOf("deutsch")!=-1) 
		{
			languageVersion="deutsch";
		}
		else
			if (lang.indexOf("russian")!=-1) 
			{
				languageVersion="russian";
			}

function ImgSwap(imgName,imgAction)
{
	document.images[imgName].src=eval("\""+imgPath+imgName+imgAction+"."+imgExt+"\"");
//	window.status="\""+imgPath+imgName+imgAction+"."+imgExt+"\"";
}

function PictWindow(fullImgURL) // open new window and view picture
{

okno=window.open("","GLOVES","width=655,height=500,scrollbars,resizeable");

imgUrl=fullImgURL;

//okno.document.open();
okno.document.write("<HTML><HEAD><TITLE>www.gloves.cz</TITLE><link rel=\"stylesheet\" href=\"../scripts/cesky.css\" type=\"text/css\"></HEAD><BODY  leftmargin=\"0\" topmargin=\"3\" marginwidth=\"0\" marginheight=\"0\"><CENTER><p>");
okno.document.write("<br><span class=\"nadpis\">MIRO Borová</span><br><A HREF=\"JavaScript: window.close();\"><IMG SRC='"+imgUrl+"' BORDER=1 hspace=5 vspace=5>");
okno.document.write("<BR>zavrit okno / close window</A>");
okno.document.write("</p></CENTER></BODY></HTML>");
//okno.document.close();
}



var SeasonImgPrefix="img_";

function SetSeasonImg(imgName) // set img src demand on season
{
	now=new Date();
	theDay=now.getDate();
	theMonth=now.getMonth()+1;
	
//	document.writeln(theDay+"/"+theMonth+" - ");

	if (theDay<10)
	{
	strDate=theMonth.toString()+"0"+theDay.toString();
	}
	else
	{
	strDate=theMonth.toString()+theDay.toString();	
	}

//document.writeln  ("\""+strDate+"\"");

numDate=parseInt(strDate);

//document.writeln  ("="+numDate+"<br>");

// command="document."+imgName+".src=\"../images/";
command="";
	if ( (numDate>=1228) && (numDate<105) )
	{

//			document.write("silvestr a novy rok");
	}
	else
	if ( (numDate>=1222) && (numDate<1225) )
	{
			command="vanoce.gif";
//			document.write("vanoce");
	}
	else		
	if (numDate>=1221) // winter
	{
		command="zima.gif";
//		document.write("zima / "+command);
	}
	else
		if ( (numDate>=321) && (numDate<621) ) // spring
		{
			command="jaro.gif";
//			document.write("Jaro",command);
		}
		else
		
			if ((numDate>=621) && (numDate<923) )// summer
			{
				command="leto.gif";
//				document.write("Leto",command);
			}
			else		
				if ( (numDate>=923) && (numDate<1221) ) // autum
				{
					command="podzim.gif";
//					document.write("podzim");
				}
				else
				{
					command="zima.gif";
//					document.write("zima / "+command);

				}
			
//	document.writeln(imgPath+imgName+command);
 document.images[imgName].src="../images/"+imgName+command;
	
}

function writeCopyright (Msg)
{
	today=new Date();
	currYear=today.getYear();
	document.write ("(c) "+currYear+Msg);

}


