function sendToFriend(){
	var documentURL = document.URL
	var fullURL     = "/Pages/340649346/SendToFriend.asp?fullURL="+ documentURL
	// Option 1 - rerirect
    // ===================
    //window.location.href= fullURL

    // Option 2 Popup
    // ==============
    //window.open(fullURL, "sendtoafriend", "WIDTH=400, HEIGHT=300")

    // Options 3 - iFrame
    // ==================
    closePopUpWinow();
    var oDiv = document.createElement("DIV");
        oDiv.id = "WindowPopup";
        oDiv.innerHTML = '<IFRAME style="margin:35px; width: 395px; height:330px;" scrolling="no" src="'+ fullURL +'" frameborder=0></FRAME>';
    document.body.appendChild(oDiv);
}
function closePopUpWinow(){
    try{
        var oDiv = document.getElementById("WindowPopup");
        document.body.removeChild(oDiv);
    }catch(e){}
}

