﻿// JScript File


    
    function opennewwindow(text1)
    {
        window.open(text1,'frmMensajeBox','height=335px,width=551px,top=3,left=3');
    }


    function opennewwindow1(text1)
    {
        window.open(text1,'frmMensajeBox','height=451px,width=504px,top=3,left=7,scrollbars=0,status=0');
    }

    function opennewwindow2(text1)
    {
        window.open(text1,'frmMensajeBox','height=601px,width=801px,top=50,left=150,toolbar=0,scrollbars=0,status=0');
    }

    function loadurl(id1)
    {
        var x1=window.parent.location;
        var x2=window.opener.location.href; 
        document.getElementById(id1).value=x2;
        return false;
    }
    
    

    function addToBookMarks() 
    {

        var url1=window.parent.location.href;
        var title1=window.parent.document.title;

        if(document.all) 
            window.external.AddFavorite(url1,title1);

        else if(window.sidebar)
            window.sidebar.addPanel (title1,url1,''); 
    }


     
    function CallPrint(strid)
    {
         var prtContent = document.getElementById(strid);
         var strOldOne=prtContent.innerHTML;
         var WinPrint = window.open('','','letf=0,top=0,width=1,height=1,toolbar=0,scrollbars=0,status=0');
         WinPrint.document.write(prtContent.innerHTML);
         WinPrint.document.close();
         WinPrint.focus();
         WinPrint.print();
         WinPrint.close();
         prtContent.innerHTML=strOldOne;
    }
