// JavaScript Document

//resizes iframes
function autoResize(id){
    var newheight;
    var newwidth;

    if(document.getElementById){
        newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
        newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
    }

    document.getElementById(id).height= (newheight) + "px";
    document.getElementById(id).width= (newwidth) + "px";
}
//-->

function popWindow(URL){
/*function to open the */	
day = new Date();
id = day.getTime();
address="tellfriendubr.php?path=" + URL; 

eval("page" + id + " = window.open(address, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=400,height=430,left = 435,top = 310');");
}