var locationTimer;

function showBuilding(V, evt) {
	if(locationTimer) {
		cancelLocationTimeout();	
	}
	var e = (IE) ? window.event : evt;
	var lX = e.clientX;
	var lY = e.clientY;
	
	var d = document.getElementById('rollover');
	d.style.border = '1px solid #000';
	d.style.backgroundColor = '#fff';
	d.innerHTML = getLocationContents(V);
	var dH = d.offsetHeight;
	d.style.position = 'absolute';
	d.style.top = (lY - dH) + 'px';
	if(V == 14) {
		d.style.left = '0px';
		var a = d.offsetWidth;
		lX = lX - a;
	}
	d.style.left = lX + 'px';
	d.style.visibility = 'visible';
	
}

function hideBuilding() {
	locationTimer = setTimeout("closeBuilding()", 500); 
}

function closeBuilding() {
	document.getElementById('rollover').style.visibility = 'hidden';		
}

function cancelLocationTimeout() {
	clearTimeout(locationTimer);
	locationTimer = null;
}

function getLocationContents(V) {
	var a = '<img src="' + GPath + 'locations/building' + V + '.jpg" />';
	if(V == 14) {
		var b = '<strong>50,000 sq. ft. Distribution Facility<br /><br />Rochester Electronics LLC</strong><br />14 Malcolm Hoyt Drive';
	}
	if (V == 16) {
		var b = '<strong>Worldwide Headquarters<br /><br />Rochester Electronics LLC</strong><br />16 Malcolm Hoyt Drive';
	}
	if (V == 17) {
		var b = '<strong>Conservation Pond</strong><br /><br />In an effort to promote a <br />healthy, green ecosystem, <br />Rochester Electronics has <br />constructed a pond,<br /> filled with catfish, turtles, <br />geese and even muskrats.';
	}
	if(V == 18) {
		var b = '<strong>100,000 sq. ft. Distribution Facility<br /><br />Rochester Electronics LLC</strong><br />18 Malcolm Hoyt Drive';
	}
	if(V != 17) {
		b += '<br />Newburyport, Massachusetts 01950 USA<br />Phone: 978-462-9332<br />Fax: 978-462-9512<br />Email: <a href="mailto:sales@rocelec.com">sales@rocelec.com</a><br />Location: <a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=16+malcolm+hoyt+dr.,+newburyport,+ma&sll=37.0625,-95.677068&sspn=42.495706,93.164063&ie=UTF8&t=h&z=16&iwloc=addr" target= "_blank">Map</a>';
	}
	var c = '<table><tr><td>' + a + '</td><td valign="top">' + b + '</td></tr></table>';
	return c;
}


var bf_locOffRun = false;
var locOffRE;

function showOffice(V) {
	var b;
	var c;
	if(!bf_locOffRun) {
		locOffRE = document.getElementById('locationImg').innerHTML;
		bf_locOffRun = true;
	}
	
	if(V == 1) {
		document.getElementById('locOff1').style.fontWeight = 'bold';
		document.getElementById('locOff2').style.fontWeight = 'normal';
		document.getElementById('locOff3').style.fontWeight = 'normal';
		document.getElementById('locOff4').style.fontWeight = 'normal';
		document.getElementById('locationImg').innerHTML = locOffRE;
	}
	if(V == 2) {
		document.getElementById('locOff2').style.fontWeight = 'bold';
		document.getElementById('locOff1').style.fontWeight = 'normal';
		document.getElementById('locOff3').style.fontWeight = 'normal';
		document.getElementById('locOff4').style.fontWeight = 'normal';
		b = 'eur';
		c = '<strong>European Sales Office<br /><br />Rochester Electronics, Ltd.</strong><br />Phoenix House<br />2 Phoenix Park<br />Eaton Socon, St. Neots<br />Cambridgeshire, PE19 8EP<br />United Kingdom<br />Phone: 44 1480 408400<br />Fax: 44 1480 407669<br />E-Mail: <a href="mailto:eurosales@rocelec.co.uk">eurosales@rocelec.co.uk</a>';
	}
	if(V == 3) {
		document.getElementById('locOff3').style.fontWeight = 'bold';
		document.getElementById('locOff2').style.fontWeight = 'normal';
		document.getElementById('locOff1').style.fontWeight = 'normal';
		document.getElementById('locOff4').style.fontWeight = 'normal';
		b = 'asia';
		c = '<strong>Asia Sales Office<br /><br />Rochester Electronics Ltd. Shanghai Rep Office</strong><br />Unit 1806, 18th Floor, Westgate Tower<br />No.1038 Nanjing Road West<br />Shanghai, 200041 China<br />Tel: 86 21 6288-1465<br />Fax: 86 21 6288-1474<br />E-Mail: <a href="mailto:asiasales@rocelec.com">asiasales@rocelec.com</a>';
	}
	if(V == 4) {
		document.getElementById('locOff4').style.fontWeight = 'bold';
		document.getElementById('locOff2').style.fontWeight = 'normal';
		document.getElementById('locOff1').style.fontWeight = 'normal';
		document.getElementById('locOff3').style.fontWeight = 'normal';
		b = 'mary';
		c = '<strong>Design & Technology Office<br /><br />Rochester Electronics, LLC.</strong><br />7529 Standish Place, Suite 310<br />Rockville, Maryland 20855 USA<br />Location: <a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=7529+Standish+Place,+Rockville,+MD&sll=37.0625,-95.677068&sspn=52.550571,114.257812&ie=UTF8&z=17&iwloc=A" target="_blank">Map</a>';
	}
	if(V != 1) {
		var a = '<table><tr><td><img src="' + GPath + 'locations/' + b + 'Office.png" /></td><td valign="top" align="left">' + c + '</td></tr></table>';
		document.getElementById('locationImg').innerHTML = a;
	}
}
