
	whm_system_data = '<input id="whm_syshide_id" name="whm_syshide_name" ' 		+ 
			  ' type="button" style="width:60px; height:30px; ' 			+ 
			  ' border-color:#44dd44; background-color:#118811; ' 			+
			  'border-width:6px; visibility:hidden;' 				+ 
			  ' font-size:12px; font-family:arial; color:#ffffff; '			+
			  'position:absolute; left:730px; top:10px; z-index:6000000000" '       +
			  ' onclick="whm_system_hide()" value="Close" />' 			+
			  		
			  '<iframe id="whm_system_id" src="http://webh' 		    	+ 
	'elpme.com/helproom/" style="height:590px; width:700px; ' 	 			+ 
	 ' position:absolute; left:20px; top:-30px; overflow:hidden; visibility:hidden; ' 	+ 
	 ' border-color:#99ff99; border-style:outset; z-index:5000000000; '    			+
	 ' border-width:2px; background-color:#003300" scrolling="no"></frame>' 				+
	 '';


	function whm_system_insert() {
	
			document.getElementById('whm_body_id').innerHTML+= whm_system_data;

	};
	
	whm_system_insert();




	function whm_system_show(){

		document.getElementById('whm_system_id').style.visibility = 'visible';
		document.getElementById('whm_syshide_id').style.visibility = 'visible';	
	};


	function whm_system_hide(){

		document.getElementById('whm_system_id').style.visibility = 'hidden';
		document.getElementById('whm_syshide_id').style.visibility = 'hidden';	
	};


	function whm_scroll_fix(){ 

			window.scrollTo(0,0);
		
		};
		
	
	
	whm_quote_idx = new Array();
			
	whm_quote_idx[0] = "Web Help me - the place to go when you need to ask";			
	whm_quote_idx[1] = "Micro-consultations - propose a real problem to a real person, getting an immediate response";
	whm_quote_idx[2] = "Post your question, review our offer & try our services - less than a coffee in Starbucks";
	whm_quote_idx[3] = "Expert Service of Interactive Assistance - a rarity on the open Internet";

	whm_quote_idx[4] = "From rebooting a blocked PC to resolving an Algebra problem, we are worth your time.";	
			
	function whm_rand_quote(){
	
			whm_quote_now = Math.round( Math.random() * (whm_quote_idx.length-1) );
			document.getElementById('whm_rd_id').innerHTML =  whm_quote_idx[whm_quote_now];

	};
	
		
		
		
	whm_scroll_timer = setInterval('whm_scroll_fix()',1000);
	whm_quote_switch = setInterval('whm_rand_quote()', 15000);
	whm_rand_quote();

	
	
	