﻿// JScript File
function openLink(URI)
    {
        //win = window.open(URI,"secWin","width=600,height=600,left=100,scrollbars=yes,resiz able=yes,location=yes");
        win = window.open(URI,"secWin","scrollbars=yes,resiz able=yes,location=yes");
        win.focus;
    }	

//function resizeFrameByName(obj) ישן מתאים לIFRAME
//{
//    var newHeight;
//    var F = document.getElementById(obj)
//    if(F.contentDocument) 
//        {
//        newHeight = F.contentDocument.documentElement.scrollHeight+30; //FF 3.0.11, Opera 9.63, and Chrome
//        } 
//    else 
//        {
//        newHeight = F.contentWindow.document.body.scrollHeight+30; //IE6, IE7 and Chrome
//        }
//        F.style.height = newHeight;
//}


function resizeFrameByName(obj) 
{
    var newHeight;
    var F = document.getElementById(obj);
    if(F.contentDocument) 
        {
 //              alert("in: 1" + "        " + newHeight);
 // newHeight = F.contentDocument.documentElement.scrollHeight+30; //FF 3.0.11, Opera 9.63, and Chrome
         newHeight = F.offsetHeight+30; //FF 3.0.11, Opera 9.63, and Chrome
       } 
    else 
        {
        newHeight = F.offsetHeight+30; //IE6, IE7 and Chrome
   //     alert("in: 1" + "        " + newHeight);
        }
        
    if (newHeight <= 200)
        {   
            newHeight = 200;
        }
    F.style.height = newHeight;
        
        return newHeight;
}
