$(document).ready(onPageReady);


function onPageReady()
{
	if (window.location.hash)
	{
		
		//alert(window.location.hash);
		var container = $($(".Page").children()[0]);
		var iframe = $("iframe");
		iframe.attr("onLoad", "calcHeight();");
		iframe.attr("scrolling" , "no");
		iframe.attr("src" , window.location.hash.substr( 1 ) );
		
		
		container.empty();
		container.append(iframe);
		
	}
}
