function OpenExternalLink(Url) {
    window.open(Url);
}


/*Iframe window height increase */
function calcHeight(obj) {
    //find the height of the internal page
    var the_height = obj.contentWindow.document.body.scrollHeight;
    //document.getElementById(id)

    //change the height of the iframe
    obj.height = the_height;
}
/*Iframe window height increase */
