var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=600,width=321,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}
function popformtastic(url)
{
	newwindow=window.open(url,'name','height=600,width=700,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
}

function popquote(url)
{
	dest1 = document.quick_quote.dest1.value;
	dest2 = document.quick_quote.dest2.value;
	url = url+"?dest1="+dest1+"&dest2="+dest2;
	newwindow=window.open(url,'name','height=500,width=540,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	//if (window.focus) {newwindow.focus()}
}


