﻿$(document).ready(function () {
    $('a').mouseover(function () {
        window.status = 'موسسه فنی شاهرخی'; return true;
    });
    $('a').mouseout(function () {
        window.status = ' ';
    });
    $('a').mouseup(function () {
        window.status = ' ';
    });
});

function statwords(message) {
    window.status = message;
}

function calcHeight() {
    //find the height of the internal page
    var the_height =document.getElementById('iframe1').contentWindow.document.body.scrollHeight;
    //change the height of the iframe
    document.getElementById('iframe1').height = the_height +1;  
}
