var IE = navigator.appName.indexOf("Explorer") > -1;

function showQuery(){
	var q = getCookie("QRY");
	q = q==null?'':q;
	if(window.frames['qbuffer'].document.body.innerHTML.length < 3){
		qbox = document.getElementById('QueryBox').value = unescape(q);
		return;
	}
	document.getElementById('qdiv').innerHTML = window.frames['qbuffer'].document.body.innerHTML;
	var qbox = document.getElementById('QueryBox');
	if(qbox != null)
		qbox.value = unescape(q);

}

function saveQueryText(){
	var q = document.getElementById('QueryBox').value;
	setCookie("QRY",escape(q),null,null,null,null);	
}
function saveQueryBuild(){
	var q = document.getElementById('sqlqry').value;
	var html = document.getElementById('htmlqry').innerHTML;
	if(html.indexOf('Cannot load') != -1)return;
	setCookie("QRY",escape(q),null,null,null,null);	
}
