// JavaScript Document
function show_quotes_page(id)
{
	window.focus();
	window.location.href = "../content/detailed-quote?pid=" + id;
}

function pack_select_handler()
{
	var i = document.quote_frm.pack.selectedIndex;
	
	show_quotes_page(document.quote_frm.pack.options[i].value);	
}