// popup
// there are 2 ways of calling the popup script.  
// type 1: <a href="popup.html" onClick="popup('pop','','300','800','','')" target="pop">
// 			this way, the user can hold shift when he clicks on a link to load into a new window
// tyep 2: <a href="javascript:popup('pop','popup.html','500','100')">
//			you can't load this into a new window.  But you can run this from another script.
// you can also just call it, in a very simple way. <a href="popup.html" onClick="popup('pop')" target="pop">
function popup(target,url,width,height,bars,resize) {
	if (!url)		{ url = '' }
	if (!width) 	{ width = '500' }	
	if (!height) 	{ height = '400' }	
	if (!bars) 		{ bars = 'no' }	
	if (!resize) 	{ resize = 'yes' }	
	window.open(url,target,"width=" + width + ",height=" + height + ",status=yes,menubar=no,toolbar=no,scrollbars=" + bars + ",resizable=" + resize)
}


// get url

function getUrl(link) {
	window.top.location = link;
}

// the left hand navigation mouse overs



// the left hand nav, flyouts

function highFlyItem(obj) {
//	obj.style.backgroundColor = '#FFFFFF';   
	obj.style.backgroundColor = '#FF7B00';
	obj.style.color = '#FFFFFF';
	obj.style.cursor = 'pointer';
}

function lowFlyItem(obj) {
   obj.style.backgroundColor = '#FF9900';
   obj.style.color = '#FFFFFF';
}

