// BUTTON
function pviiClassNew(obj, new_style) {
    obj.className = new_style;
}

var isNS111 = navigator.appName.indexOf("Netscape")  != -1
var isIE111 = navigator.appName.indexOf("Microsoft") != -1

function toggle111(nid){
	if (isIE111) {
		if (document.all[nid].style.display=="none") show111(nid);
		else hide111(nid);
	}
}

function show111(nid) {
	if (isIE111) {
		document.all[nid].style.display = "block";
	}
}

function hide111(nid){
	if (isIE111)  {
		document.all[nid].style.display = "none";
	}
}


// ADVERT
var htmlOutSP = "";

function ShowSponsor(){
  var i=0;
  bannersSP = new Array();
  bannersSP[0] = '<a href="http://hosting.tbonnet.com"><img src="images/sponsor_1.gif" border="0" width="120" height="120" alt="loading image..." title="Please visit our sponsors" /></a>';
  bannersSP[1] = '<a href="http://www.aicauto.com/"><img src="images/sponsor_2.gif" border="0" width="120" height="120" alt="loading image..." title="Please visit our sponsors" /></a>';
  today = new Date();
  i=today.getSeconds();
  n=bannersSP.length;
  return bannersSP[i-Math.round((i-1)/n)*n];
}

htmlOutSP += ""+ShowSponsor()+""


// RESOLUTION
var left;
var top;
function resoImage() {
	if ((screen.width == 640) && (screen.height == 480)) {
		left="135";
		top="165";
	} else if ((screen.width == 800) && (screen.height == 600)) {
		left="135";
		top="165";
	} else if ((screen.width == 1024) && (screen.height == 768)) {
		left="135";
		top="165";
		fromLeft="327";
		fromTop="87";
	} else {
		left="135";
		top="165";	
	}
	document.write("<div style='position:absolute; left:"+left+"; top:"+top+";'><img src=images/welcome.gif width=348 height=141 alt=welcome /></div>");
}
