<!--
// Error Hadling Function
function err_handle(e)
{
    window.status =	'Error: ' + e.number + '; ' + e.description;
}

// iframe resize Function
function reSize()
{
	//try{
	    var objBody	    =	ifrm.document.body;
	    var objFrame	=	document.all["ifrm"];


	    objFrame.style.height = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
	    objFrame.style.width = '100%';
		



	//}
	//An error is raised if the IFrame domain != its container's domain
	/*catch(e)
	{
	    err_handle(e);
	}*/
}

// iframe initialize Function
function frame_init()
{
    //try{

	    parent.reSize();
	    parent.document.location.href = parent.document.location.href + '#';
	//}
	/*catch(e)
	{
	    err_handle(e);
	}*/
}

// iframe link move Function
function link(strURL)
{
    //try{
	    document.all["ifrm"].src = strURL;
       if (navigator.platform.indexOf("Mac") < 0)
	       document.location.href = '#';
	    window.status='';
	//}
	/*catch(e)
	{
	    err_handle(e);
	}*/
}

// iframe link move without resize Function
function link2(strURL)
{
    	alert('test');
		document.all["ifrm"].src = strURL;
		document.all["ifrm"].onresize = "";
	    document.location.href = '#';
	    window.status='';
}


//-->

