
browserr = new BrowserCheck();
	//initMouse();


function BrowserCheck() {
	var b = navigator.appName
	if (b=="Netscape") this.b = "ns"
	else if (b=="Microsoft Internet Explorer") this.b = "ie"
	else this.b = b
	this.v = parseInt(navigator.appVersion)
	this.ns = (this.b=="ns" && this.v>=4)
	this.ns4 = (this.b=="ns" && this.v==4)
	this.ns5 = (this.b=="ns" && this.v==5)
	this.ie = (this.b=="ie" && this.v>=4)
	this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0)
	this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0)
	if (this.ie5) this.v = 5
	this.min = (this.ns||this.ie)
}



	 
  function show1(where,what){

	  if (document.images!=null){

document.images[where].src= what + '.gif';

	  }
}  
  
  
  
window.onerror=null;
function bF(src, w, h) {

  var winParam = 'scrollbars=yes, width=' + w + ', height=' + h + ', location=no, toolbar=no, directories=no, status=no ,menubar=no, resizable=no, screenX=0,screenY=0, top=0, left=0';    
   var wer = Math.random();
  wer = wer*10000;
  wer = Math.round(wer); 
  
  var name = 'nm' + wer;
  subs=window.open(src, name, winParam);

		  }
		  
function bF1(src, w, h) {

  var winParam = 'scrollbars=no, width=' + w + ', height=' + h + ', location=no, toolbar=no, directories=no, status=no ,menubar=no, resizable=no, screenX=0,screenY=0, top=0, left=0';    
   var wer = Math.random();
  wer = wer*10000;
  wer = Math.round(wer); 
  
  var name = 'nm' + wer;
  subs=window.open(src, name, winParam);

		  }
		  	  
function bF2(src, w, h) {
  var winParam = 'scrollbars=no, width=' + w + ', height=' + h + ', location=no, toolbar=no, directories=no, status=no ,menubar=no, resizable=no, screenX=10,screenY=16, top=16, left=10';    
   var wer = Math.random();
  wer = wer*10000;
  wer = Math.round(wer); 
  
  var name = 'nm' + wer;
  subs=window.open('', name, winParam);
 
  
  subs.document.write('<html>' + 
'<head>' + 
'<title>Starget</title>' + 
'</head>' +
'<body bgcolor="#ffffff" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0 link="#DF671C" vlink="#DF671C" alink="#DF671C">' +
'<img src="'  + src + '" border="0"><br>' + 
'</body>' +
'</html>')
		  }	
		  
		  
var divVar = 0;
function showDiv(num) {
var curNum = num;
	if(num==divVar){
		curNum = 0;
	}
	for(i=0; i<5;i++){
		if(i==curNum){
			document.getElementById(('divText' + i)).style.visibility = 'visible';		
		}
		else{
			document.getElementById(('divText' + i)).style.visibility = 'hidden';
		}
	}
divVar = curNum;	
}