﻿

// used to show and hide the more information in the listings
function populateTarget(target, source)
{
    var t = document.getElementById(target);
    var s = document.getElementById(source);
    t.innerHTML = s.innerHTML;
}


// used to show and hide the more information in the listings
function tellFriend(i)
{
/*
    if (window.showModalDialog) 
    {
        window.showModalDialog("TellFriend.aspx?i="+i,"TellFriend","dialogWidth:550px;dialogHeight:540px;scroll:no;");
    } 
    else 
    {
        window.open("TellFriend.aspx?i="+i,'TellFriend','height=540,width=550,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,modal=yes');
    }*/
    var w = 550, h = 540, l = 0, t = 0;
    if(w < screen.width)
    {
        l = (screen.width - w) / 2;
        t = (screen.height - h) / 2;
    }
    else
    {
        h = (screen.width/w) & h;
        w = screen.width;
    }
    var openWin = window.open('TellFriend.aspx?i='+i,'TellFriend','height='+h+',width='+w+',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,modal=yes');
    openWin.moveTo(l,t);
}