﻿function CallPopup()
{
    var URL = window.location.href;
    var title= document.title;
    
    if (top.newWin != null) 
    {
        top.newWin.close();
    }
	
    top.newWin = window.open('http://www.abc-dxb.com/Membership/EmailFriend.aspx?URL='+URL+'&title='+title,'Email','width=550px,height=200px,menubar=0');
    top.newWin.focus();
        
    return false;
}

function autoClose()
{
    setTimeout("window.self.close()", 3000);
}