// JavaScript Document

function loadpage(url)
{

var myFrame = document.getElementById("frame");


        myFrame.src = url;
	  
}
/*
var is = {
  ff: window.globalStorage,
  ie: document.all && !window.opera,
  ie6: !window.XMLHttpRequest,
  ie7: document.all && window.XMLHttpRequest && !XDomainRequest && !window.opera,
  ie8: document.documentMode==8,
  opera: Boolean(window.opera),
  chrome: Boolean(window.chrome),
  safari: window.getComputedStyle && !window.globalStorage && !window.opera
}
*/

function calcHeight()
{
    try {
		
	        var FrameHeight = document.getElementById("frame").contentWindow.document.body.offsetHeight;	
				
				$("#frame").animate({
		height: FrameHeight
		}, 500 );

    }
    catch (e)
    { }
}



