﻿// copyright MAJENKA - http://www.majenka.com

<!--	

// function to set default button

	function clickButton(e, buttonid)
	{ 
        var button = document.getElementById(buttonid); 
        
        if (typeof button == 'object')
        { 
            if(navigator.appName.indexOf("Netscape")>(-1))
            { 
                if (e.keyCode == 13)
                { 
                        button.click(); 
                        return false; 
                } 
            } 
            
            if (navigator.appName.indexOf("Microsoft Internet Explorer")>(-1))
            { 
                if (event.keyCode == 13)
                { 
                    button.click(); 
                    return false; 
                } 
            } 
        } 
    }
    
    
    function popUp(URL) 
    {
        day = new Date();
        id = day.getTime();
        eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=600,left = 390,top = 212');");
    }


//-->