
thoughts = new Array()
thoughts[0] = "Taking your business to new heights."
thoughts[1] = "The future is elevating with Hire 2 Higher. "
thoughts[2] = "The Health &amp; Safety way to working at height. "

function thought() { 
	var rand = Math.random();
	var y = Math.floor((thoughts.length * rand));	
	
	document.writeln('<p class="thoughts">' + thoughts[y] + '</p>');
}

function preview(what) {
	var url = what; 
	var width = 400; 
	var height = 400; 
	var attr = ",width=" + width + ",height=" + height + ",scrollbars=yes,resizable=yes,menubar=yes" 
	showit = window.open(url, "preview", attr); 
	setTimeout('showit.focus()', 500); 


}