function setHome(){
	$homeUrl='http://www.okna-kifa.ru/';
    if (document.all){      
		document.body.style.behavior='url(#default#homepage)';
		document.body.setHomePage($homeUrl);
     }else
     if (window.sidebar){
        if(window.netscape){
			try{  
				netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); 
            }catch(e){
             //alert(”this action was aviod by your browser,if you want to enable,please enter        about:config in your address line,and change the value of     signed.applets.codebase_principal_support to true”);  
           }  
        }
	    var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch); 
		prefs.setCharPref('browser.startup.homepage', $homeUrl);
     }  
}

function showWindow(content) {
	w = window.open('', 'content', 'width=860,height=280, toolbar=no, menubar=0, titlebar=0');
	w.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	w.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
	w.document.write('<head>');
	w.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
	w.document.write('</head>');
	w.document.write('<body>');
	//w.document.write('<textarea style="width: 400px; height: 200px;">');
	w.document.write(content);
	//w.document.write('</textarea>');
	w.document.write('<br><center><a href="#" onclick="window.print(); return false;">Ðàñïå÷àòàòü</a></center>');
	w.document.write('</bo'+'dy>');
	w.document.write('</ht'+'ml>');
	w.focus();
} 
