/***********************************************************************
*
*  info.js
*
***********************************************************************/

function popup(url,width,height) {
	var properties = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,width=" + width + ",height=" + height;
	var myPopup = window.open(url, "myPopup", properties);
	myPopup.focus();
}

function goToPage(url) {
	document.location = url;
}

function changeBG(id){
	document.getElementById(id).style.backgroundColor = "#D8D8C5";
}

function changeBGBack(id){
	document.getElementById(id).style.backgroundColor = "transparent";
}

function popupnoscroll(url,width,height) {
	var properties = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=" + width + ",height=" + height;
	var myPopup = window.open(url, "myPopup", properties);
	myPopup.focus();
}

function searchGo(url,total,val) {
	if ((val > 0) && (val <= total)) document.location = url + val;
	else return false;
}