
function iframeHeight(){

	var iframe = document.getElementById("contentx");
	try{
		iframe.height =  iframe.contentWindow.document.body.scrollHeight;
		
	}catch (ex){}
}

function url(url){
	
	var contentx=document.getElementById("contentx");
	contentx.src=url;	

}
