
/* To be updated */
var nexttoresize = "";
function iframeresize(what)
	{
		nexttoresize = what;
		reallyresizeiframe (what);
		//setTimeout("reallyresizeiframe(nexttoresize)",1000);
	}
	
	
function reallyresizeiframe (what)
{
		if (document.all && window.frames[what.id].document.body.scrollHeight)
		{
			what.height=window.frames[what.id].document.body.scrollHeight;
		}
		else if (document.getElementById && window.frames[what.id].document.height>0)
		{
			//window.alert(window.frames[what.id].document.height);
			//window.alert(what.height);
			what.height=window.frames[what.id].document.height+35;
			//window.alert(window.frames[what.id].document.height);
		}
		else if (document.getElementById && window.frames[what.id].document.body.scrollHeight)
		{
			what.height=window.frames[what.id].document.body.scrollHeight+35;
		}
		else
		{
			//window.alert(what.height);
			//window.alert(window.frames[what.id].document.body.scrollHeight);
			//window.alert("Not Supported.")
		}
}

	function openCompare(ModelID) {
		window.open('http://cfmx.mercedes-benz.ca/compare/index.cfm?ModelID='+ModelID,null,"height=560,width=650,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
		return false;
	}
