// JavaScript Document

function open_popup(page) {
    window_handle = window.open(page,'popupWindowName');
    window_handle.focus();
    return false;
}

function showStatus(t)
{
	window.status=t;
	return true;
}
function clearStatus()
{
	window.status="Welcome to Sites-Directory.com";
	return true;
}

function searchThis()
{
	window.open(document.searchForm.engine.value+"/search?q="+document.searchForm.q.value,"_self");
}

