function win(sirka,vyska,url,scrollbar)
		{
			msg=window.open(url,'max',"toolbar=no,menubar=no,location=no,directories=no,scrollbars="+scrollbar+",resizable=no,status=no,width="+sirka+",height="+vyska+",top=50,left=50");
			return true;
		}
function writeCookie() 
{
	var today = new Date();
	var the_date = new Date("December 31, 2099");
	var the_cookie_date = the_date.toGMTString();
	var the_cookie = "myWidth="+ window.screen.availWidth;
	var the_cookie = the_cookie + ";expires=" + the_cookie_date;
	document.cookie=the_cookie
}
function showHide(ID,PID){
	  if ($(ID).visible() == false) new Effect.Appear(ID); 
	  	else new Effect.Fade(ID);
	  return false;
	}
function ShowIt(ID){
	new Effect.Appear(ID);
	return false;
}

