function sendtofriend()
{
    //window.location.href='sendfriend.aspx?link='+location.href
    var url = 'http://www.traveliano.com/sendfriend.aspx?link='+parent.location.href
    var w = 450;
    var h = 140;
    var currentTime = new Date();
    var windowName = currentTime.getDate() + (currentTime.getMonth() + 1) + currentTime.getFullYear() + currentTime.getHours() + currentTime.getMinutes() + currentTime.getSeconds();
    var windowName = "SendToFriend"                   
    var viewimageWin = window.open(url,windowName,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=Yes,resizable=no,copyhistory=no,width='+w+',height='+h);
    viewimageWin.moveTo(screen.availWidth/2-(w/2),screen.availHeight/2-(h/2));
    if (window.focus) {viewimageWin.focus()}
}