var d, m, y;
	d = new Date();
	currentD = d.getDate();
	currentM = (d.getMonth() + 1);
	currentY = d.getFullYear();
function isLeap (yy)
{
	if (((yy%4==0)&&(yy%100!=0))||(yy%400==0))
		{	
			return true;
		}
	else
		{
			return false;
		}
}


function setDivHeight() {
  if (parseInt(navigator.appVersion)>3) 
  {
	 if (window.innerHeight) 
	{
		  h = window.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight) { 
				h = document.documentElement.clientHeight;
			} 
	else if (document.body) { // other Explorers
				h = document.body.clientHeight;
	} 
	document.getElementById("container").style.height= h + "px";
	document.getElementById("myiframe").height= h + "px";
  }
	
}

function goHref (url)
{
	document.getElementById("myiframe").src = url;
}
function resizeWidth (w) {
	document.getElementById("flashContainer").style.width = w + "px";
}
function resizeHeight (h) {
	document.getElementById("flashContainer").style.height = h + "px";
}


