<!--
/***************************************************************
 Credit-Coops.ru WebSite Javascript functions for Servise Page v1.3
 Copyright (c) 2005 Sun-Man Design by NZ
 12/18/2005
 www.credit-coop.ru
****************************************************************/

function hideIt(layer) {
    if (document.getElementById && document.getElementById (layer) && document.getElementById (layer).style)
        document.getElementById (layer).style.visibility="hidden"; 
    if (navigator.appName.substring(0,9) == "Microsoft"){
        document.all[layer].style.visibility="hidden";
    }else{
        document.layers[layer].visibility="hide";
    }
}
function showIt(layer) {
    if (document.getElementById && document.getElementById (layer) && document.getElementById (layer).style)
        document.getElementById (layer).style.visibility="visible";
    if (navigator.appName.substring(0,9) == "Microsoft"){
        document.all[layer].style.visibility="visible";
    }else{
        document.layers[layer].visibility="show";
    }
}

function make_icon(name,w,h){
pict=window.open("","wicon","resizable=no,scrollbars=no,width="+w+",height="+h+",top=100,left=330");
	pict.document.open();
	pict.document.write('<html><meta http-equiv=imagetoolbar content=no><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><a href="javascript:window.close()"><img src='+name+' width='+w+' height='+h+' border=0 alt="close window"></a></body>');
       	pict.document.close(); 
}
// -->
