
	function changeto(source, highlightcolor, source2, othercolor)
	{
	source.style.backgroundColor=highlightcolor;  
    source2.style.color=othercolor;  
	}
	function confirmDelete(){
  return confirm('Are you really sure you want to delete this item?');}
  	function openNewWindow(URLtoOpen, windowName, windowFeatures) { newWindow=window.open(URLtoOpen, windowName, windowFeatures); }


function hyperlinkjump(form) 
	{
	//form.golocation.blur();
	var myindex = form.golocation.selectedIndex;
	if (myindex==0) return false;
	window.location = form.golocation.options[myindex].value;
	//window.location = 'http://' + form.golocation.options[myindex].value;
	//parent.location=form.golocation.options[myindex].value;
	return true;
}

