function openSendAFriendPopup(theUrl) { showContentPopUp('http://' + document.location.host + '/mail_a_friend.aspx?pageUrl=' + theUrl); }
function openSendAFriendPopup2(theUrl) { showContentPopUp('http://' + document.location.host + '/mail_a_friend_p.aspx?pageUrl=' + theUrl); }
function showContentPopUp(theURL){width = 540;height = 460;winName="";options = 'toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no';options += ',width=' + width + ',height=' + height;if (window.screen){windowLeft = (screen.availWidth - width)/2;windowTop = (screen.availHeight - height)/2;options += ',left=' + windowLeft + ',top=' + windowTop;}newwindow = window.open(theURL,winName,options);newwindow.opener = this;newwindow.focus();}
