// JavaScript Document

function quickLink(form) {	
	var newurl = form.quickLinks.options[ form.quickLinks.selectedIndex ].value 
	window.parent.open(newurl,"_self"); return false;
}


