﻿// JScript File

function resizeIframe()
{

     var docHeight;

     if (typeof document.height != 'undefined') {
     docHeight = document.height;

     }
     else if (document.compatMode && document.compatMode != 'BackCompat') {
     docHeight = document.documentElement.scrollHeight;
     }
     else if (document.body
     && typeof document.body.scrollHeight != 'undefined') {
     docHeight = document.body.scrollHeight;
     }

     // magic number: suppress generation of scrollbars...
     docHeight += 20;
     parent.document.getElementById('jokeFrame').style.height = docHeight+ 'px';

     parent.document.getElementById('jokeFrame').onload = resizeIframe;
     parent.window.onresize = resizeIframe;
}


function onclick_AddCon()
{
    parent.location.href = "AddContact.aspx";
}
function onclick_AddGr()
{
    parent.location.href = "freesms8Groups.aspx";
}
function onclick_ViewGr()
{
    window.location.href = "ManageGroup.aspx";
}
function onclick_SMS()
{
    parent.location.href = "GroupSMS.aspx";
}
function onclick_ViewCon()
{
   window.location.href = "ManageContacts.aspx";
}

function onHover_row2(rowid)
{  
    document.getElementById(rowid).className = "sRow2_sel";
}
function onOut_row2(rowid)
{  
    document.getElementById(rowid).className = "sRow2";
}