﻿// JScript File

function getPageHeight(value)
{							
	document.getElementById(value).value = document.body.clientHeight; 
}

function sendToFriend(language,pageUrl)
{
    var page = 'SendToFriend.aspx?lang='+ language + '&pageUrl=' + pageUrl;
    window.open(page,'','width=577,height=320');
    return false;
}


