/* Resize the iframe width and height */
function setDimensions(h,w,u) {
	
		h = parseInt(h);
		w = parseInt(w);
		var iframe = document.getElementById(u);
		//alert(w +"   "+   h);
iframe.style.width = w + "px";
iframe.style.height = h + "px";
}
/* Resize the iframe width and height */