
	var isIE = document.all ? true:false;
	
	// Mouse Trapping code 
	if (!isIE) 
		document.captureEvents(Event.MOUSEMOVE); 
	
	document.onmousemove = getMouseXY; 
	
	var tempX = 0; 
	var tempY = 0; 
	function getMouseXY (e) {
		if (isIE) { 
			tempX = event.clientX + document.body.scrollLeft; 
			tempY = event.clientY + document.body.scrollTop; 
		} 
		else { 
			tempX = e.pageX; 
			tempY = e.pageY; 
		} 
		
		if (tempX < 0) tempX = 0; 
		if (tempY < 0) tempY = 0; 
		
		return true; 
	} 
	
	function showPop(infoType) {
		popNote = document.getElementById('popNote'); 
		popNote.style.display = 'block'; 
		popNote.style.left = tempX; 
		popNote.style.top = tempY;  
		
		switch (infoType) { 
			case 'gateway': 
				Title = 'The Career Gateway'; 
				Blurb = 'Some great text about how great the Career Gateway is and all of that good stuff.'; 
			break; 	
			case 'MonsterTRAK': 
				Title = 'MonsterTRAK'; 
				Blurb = 'Some great text about how great MonsterTRAK is and all of that good stuff.'; 
			break; 	
			case 'H1B': 
				Title = 'H1B for International Students'; 
				Blurb = 'H1 Base, Incorporated is the leading online H1B Visa Information and Services Company, who is dedicated to assisting International Professionals and International Students, from all over the World, find Jobs with the Top H1B Sponsor Companies & Employers - in order to move to America to Live and Work.'; 
			break; 
		} 
		
		popNote.innerHTML = '<div id="closeNote" style="text-align: right;"><a href="javascript: hidePop();">[x] close</a></div><span style="font-size: 10pt; color: #333; font-weight: bold;">' + Title + '</span><br><br>' + Blurb; 
	} 
	
	function hidePop() { 
		popNote = document.getElementById('popNote'); 
		popNote.style.display = 'none'; 
	} 