
function valLookup() {
	f = window.document.look;

	ret = validate(f.symbol,'string',alert_symbol)
	;

	return ret;
}

function Quote(symbol) {
	window.opener.document.qq.ls_symbol.value = symbol;
	window.opener.focus();
}

function goTo(url) {
	window.opener.location.href = url;	
	window.opener.focus();
}

function showDynamic(sd){
	var dynamic_div = getRef('dyn_data');
	var static_div = getRef('static_data');
	if(sd==true){
		dynamic_div.style.display = 'block';
		static_div.style.display = 'none';
	}
	else if(sd==false){
		dynamic_div.style.display = 'none';
		static_div.style.display = 'block';
	}
}
