function popUp(URL, w, h)
{
	eval("popup = window.open(URL, 'popup', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + w + ",height=" + h + "');");	
}

function redirect(url)
{
	window.location = url;
}

function rowHighlight(row, on)
{
	if (on)
		row.style.background = '#dddddd'
	else
		row.style.background = '#ffffff';
}

function toggleDisplay()
{
	var on = arguments[arguments.length - 1];
	
	if (arguments.length == 1)
		$(arguments[0]).style.display = ($(arguments[0]).style.display != 'none' ? 'none' : 'block' );
	else {
		for ( var i=0; i < (arguments.length - 1); i++ ) {
			if (on == true)
				$(arguments[i]).style.display = 'block';
			else if (on == false)
				$(arguments[i]).style.display = 'none';
			else
				$(arguments[i]).style.display = ($(arguments[i]).style.display != 'none' ? 'none' : 'block' );
		}
	}
}
