// --

function pop(url,w,h) {
	
	success = window.open(url,'w','toolbar=no,menubar=no,resizable=no,scrollbars=yes,status=no,location=no,top=100,left=100,width='+w+',height=' + h);
	
	if (!success) {
		alert("Please disable any pop-up blockers and try again.");
	}
	
	
	return false;
	
}

function highlightRow(obj) {
	
	selected = obj.options[obj.selectedIndex];
	
	for (var i = 0; i < obj.options.length;i++) {
		
		current = obj.options[i];
		id = 'r' + current.value;
		tr = document.getElementById(id);
			
		if (selected == current) {
			tr.style.backgroundColor = '#ffffcc';	
		} else {
			tr.style.backgroundColor = '';	
		}
		
	}
	
}