

var typexit=false;
function izexitwindow(url, width, height)
{
        if( width == undefined ){
                width = 850;
        }
        if( height == undefined ){
                height = 800;
        }
        var win = 'toolbar=0,directories=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height;
        if (typexit){
                open(url,'WindowName',win);
        }
}
function noPop()
{
        typexit = false;
}
function setTags()
{
        atags = document.getElementsByTagName('a');
        for(var i=0; i<atags.length; i++ ){
                atags[i].onclick = noPop;
        }
        formtags = document.getElementsByTagName('form');
        for(var i=0; i<formtags.length; i++ ){
                formtags[i].onsubmit = noPop;
        }
        typexit = true;
}
