// JavaScript Document

/* force screen to full screen */
function fullScreen()  {
	this.moveTo(0, 0);
	this.resizeTo(screen.availWidth, screen.availHeight);
}
window.maximize = fullScreen;

/* search execution */
function searchExec(formobj) {
	var q=formobj.q.value;
	if (q!="") {
		var prm="?id=query"+"&q="+q;
		window.open("index.php"+prm, "_self");
	}
}
