function resizeIframe() {


var height = 0;
if(document.all)//ie
 {
	if(document.body.clientHeight <=100)
	  {
		    height = document.documentElement.clientHeight;
height = 472;
			//alert(height)
	  }
	  else
	  {
		    height = document.body.clientHeight;
	  }
 }
 else //firefox     etc..
 {

	// var browserDims = getDimensions(); 

        // calculate the center of the page using the browser and element dimensions 
       // height = browserDims.height;
	height = 472;

 }



window.frameElement.style.height = height+"px";



}
