


	//Global Variable

	var moDir = 'images/layout/'; //images directory

	//Simple MouseOver function
	function mo(obj,img){
		document.images[obj].src = moDir + img + '.gif';
		}
		
	//Displays browser status text
	function s(txt) {
		if(txt != '') status = txt;
		else status = 'Whitten Capital Group';
		}
	
		
	//Window pop up
	function popUpWin(url,wd,ht) {
		var topX, leftY;
		topX =  (window.screen.height-ht)/2;
		leftY = (window.screen.width-wd)/2;
		win = window.open(url,'temp','height='+ht+',width='+wd+',toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=1,copyhistory=0,screenX='+topX+',screenY='+leftY+',top='+topX+',left='+leftY);
		}
