<!--
	function mOvr(src,clrOver) {
		src.style.cursor = 'pointer';
		src.style.backgroundColor = clrOver;
		
	}
	function mOut(src,clrIn) {
		src.style.cursor = 'default';
		src.style.backgroundColor = clrIn;
	}
	//function mClk(src) {
	//	src.getElementsByTagName('a')[0].click();
	//}

	function resize_iframe()
	{	

		var height=window.innerWidth;//Firefox
		if (document.body.clientHeight)
		{
			height=document.body.clientHeight;//IE
		}

        	var the_height=document.getElementById("the_iframe").contentWindow.document.body.scrollHeight;
		document.getElementById("the_iframe").height=the_height;
	}
// -->	
