/////////////////////////////////////////////////////
//	Purple Monkey
//
//  Jump Menu
//
//	Created By: ?
//  Created On: ?
//
//	Last Modified On: 08/15/2005
//	Last Modified By: Ray Schauer
//
//
/////////////////////////////////////////////////////
function jumplink(item){
	element = item.options[item.selectedIndex];
	element = item.options[item.selectedIndex];
	if(element.getAttribute('target') == "new")
		window.open(element.value);
	else
		window.location = element.value;
}