rndImg = function(){
	//<img src="images/sampleRnd3.jpg" id="rndImg"/>
	//var imgNum = Math.round(Math.random()*2+1);
	var imgNum = 4;
	document.write('<img src="images/sampleRnd' + imgNum + '.jpg" id="rndImg" width="400" height="81"/>');
}


embedMe = function(myMovie, width, height){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width=\"'+width+'\" height=\"' + height + '\" id="site" align="middle">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="allowFullScreen" value="false" />\n');
	document.write('<param name="movie" value=\"'+myMovie+'\" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="scale" value="noscale" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('<param name="bgcolor" value="#ffffff" />\n');
	document.write('<embed src=\"'+myMovie+'\" quality="high" scale="noscale" wmode="transparent" bgcolor="#ffffff" width=\"'+width+'\" height=\"'+height+'\" name="site" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	document.write('</object>\n');
}

setButt = function(){
	var myButt = document.getElementById("submitMe");
	myButt.onmouseover = function(){		
		this.className = "submitMeHov";
	}
	myButt.onmouseout = function(){		
		this.className = "submitMe";
	}
	var myTexts = new Array();
	for(i=0;i<3;i++){
		var myText = document.getElementById("text" + (i+1));
		myText.onfocus =  function(){			
			this.className = "textBoxHov";
		}
		myText.onblur =  function(){			
			this.className = "textBox";
		}
		/*myText.onmouseover =  function(){
			this.className = "textBoxHov";	
		}
		myText.onmouseout =  function(){
			this.className = "textBox";	
		}*/	
		//myTexts[i] = document.getElementById("text" + (i+1));
		
	}
}

setFooter = function(){
		var myFooter = '<div class="footerText" id="footerText">';
		myFooter += '<a href="index.html">Home</a> | ';
		myFooter += '<a href="aboutus.html">About Us</a> | ';
		myFooter += '<a href="solutions.html">Solutions</a> | ';
		myFooter += '<a href="services.html">Services</a> | ';
		myFooter += '<a href="certifications.html">Certifications</a> | ';
		myFooter += '<a href="qualifications.html">Qualifications</a> | ';
		myFooter += '<a href="rates.html">Rates</a> | ';
		myFooter += '<a href="news.html">News</a> | ';
		myFooter += '<a href="contacts.html">Contacts</a><br />';
		myFooter += 'Copyright 2008. NetWatch Information Systems, Inc. All Right Reserved.';
		myFooter += '  </div>';	
	
		document.write(myFooter);
	
}