﻿function OpenEmailFriend(ref)
{ 
    var str="toolbar=no,status=no,menubar=no,location=no,scrollbars=yes,resizable=no,height=380,width=500"
    
    emailFriend = window.open(ref,"EmailObj",str);
    emailFriend.opener = top;
} 