var thisURL = location.href.toLowerCase(); //get url
if (thisURL.indexOf("products") > -1) {
	document['topPic'].src = 'images/top_pic/e001.jpg';
}
else if (thisURL.indexOf("represent") > -1) {
	document['topPic'].src = 'images/top_pic/parkshot.jpg';
}
else if (thisURL.indexOf("contact") > -1) {
	document['topPic'].src = 'images/top_pic/e012.jpg';
}
else if (thisURL.indexOf("territories") > -1) {
	document['topPic'].src = 'images/top_pic/e002.jpg';
}
else if (thisURL.indexOf("new_prods") > -1) {
	document['topPic'].src = 'images/top_pic/e005.jpg';
}	
else {
	document['topPic'].src = 'images/top_pic/tulipshot.jpg' 
}

	function newWin(nURL) {
		newWin = window.open(nURL);
	}