var isNS6 = (navigator.userAgent.indexOf("Gecko")    > 0) ? 1 : 0;	// detect Netscape 6
var isNS4 = (document.layers);						// detect Netscape 4+
var isIE4 = (document.all);						// detect Internet Explorer 4+
var isNS = isNS4 || isNS6 ;

function style(){
	document.write('<link rel="stylesheet" type="text/css" href="/inc/style/style.css">')
}


function table_background(){
if (isNS)
	document.write('<table width="611" height="489" align="top" border="0" cellpadding="0" cellspacing="0">')
else if (isIE4)
	document.write('<table background="/pix/bg_text.gif" width="611" height="489" align="top" border="0" cellpadding="0" cellspacing="0">')
else
	document.write('<table background="/pix/bg_text.gif" width="611" height="489" align="top" border="0" cellpadding="0" cellspacing="0">')
}
