function myalert($text)
{
	//BEGIN BOXY
	Boxy.alert($text, function() {}, {title:'Alert'});
	//END
}
function myconfirm($text)
{
	var agree=confirm($text);
	return agree;
}

function gotoURL($url) {
	window.location = $url;
}
function refreshpage()
{
	location.reload(true);
}

//********************************************************************************************

function verify()
{
	if (document.forms[0].myName.value=="")
	{
		alert("Please enter a name in the field");
		return false;
		}else{
		return true;
	}
}

//*************************************************************************************

function toggleRow(obj, id)
{
	if (obj.value == '1') {
		document.getElementById(id).style.display = 'none';
	} else {
		document.getElementById(id).style.display = '';
	}
}

//*************************************************************************************

function rowHover(cell, rhtcell) {
	cell.style.background='#F9E3A4';
}

function rowHoverOut(cell) {
	cell.style.background='none';
}

