function pceFrameInit( idValue )
{
	if ( window.postMessage )
	{
		if ( window.addEventListener )
		{
			window.addEventListener("message",
				function(e)
				{
					if ( YAHOO.env.ua.opera )
					{
						if ( e.domain !== 'admin.madeformycar.com' )
						{
							return;
						}
					}
					else
					{
						if ( e.origin !== 'http://admin.madeformycar.com')
						{
							return;
						}
					}

					document.getElementById(idValue).style.height = e.data + "px";
				}
			,false);
		}
		else if ( window.attachEvent )
		{
			window.attachEvent("onmessage",
				function(e)
				{
					if ( e.origin !== 'http://admin.madeformycar.com')
					{
						return;
					}
					document.getElementById(idValue).style.height = e.data + "px";
				}
			);
		}
	}
	else
	{
		YAHOO.util.CrossFrame.onMessageEvent.subscribe(
			function (type, args, obj)
			{
				var msg = args[0];
				var domain = args[1];
				if ( domain !== 'http://admin.madeformycar.com' )
				{
					document.getElementById(idValue).style.height = msg + "px";
				}
			}
		);
	}
}