<!--
//
function setBackById(d, v) {
document.getElementById(d).style.backgroundColor = v;
}
function showMenu(d,v) {
	document.getElementById(d).style.visibility = v;
}
//
function goURL (stURL) {
	document.location.href = stURL;
}
//
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
//-->

<!--
//
var imgArrHome = new Array(); // array to hold the images.
	imgArrHome.push("/images/img_home_01.jpg"); // push each image path into the imgArr array.
	imgArrHome.push("/images/img_home_02.jpg");
	imgArrHome.push("/images/img_home_03.jpg");
	imgArrHome.push("/images/img_home_04.jpg");
	imgArrHome.push("/images/img_home_05.jpg");
	imgArrHome.push("/images/img_home_06.jpg");
//
function randomImgHome() {
	var wH = 560; // define width
	var hH = 325; // define height
	var scH = null; // define style class
	var bH = false; // boolean border
	//
	var ranHome = Math.floor(Math.random()*imgArrHome.length); // define a random number
	//
	// build a string for the image tag:
	var strH = '<img src="'+imgArrHome[ranHome]+'" height="'+hH+'" width="'+wH+'"';
	if (bH) {
		strH += ' border="1" ';
	}
	if (scH != null) {
		strH += ' class="'+scH+'" ';
	}
	strH += '>';
	//
	document.write(strH);
}
//-->

<!--
//
var imgArr = new Array(); // array to hold the images.
	imgArr.push("/images/img_01.jpg"); // push each image path into the imgArr array.
	imgArr.push("/images/img_02.jpg");
	imgArr.push("/images/img_03.jpg");
	imgArr.push("/images/img_04.jpg");
	imgArr.push("/images/img_05.jpg");
	imgArr.push("/images/img_06.jpg");
//
function randomImg() {
	var w = 248; // define width
	var h = 263; // define height
	var sc = null; // define style class
	var b = false; // boolean border
	//
	var ran = Math.floor(Math.random()*imgArr.length); // define a random number
	//
	// build a string for the image tag:
	var str = '<img src="'+imgArr[ran]+'" height="'+h+'" width="'+w+'"';
	if (b) {
		str += ' border="1" ';
	}
	if (sc != null) {
		str += ' class="'+sc+'" ';
	}
	str += '>';
	//
	document.write(str);
}
//-->