/**
*	Support Scripts
*/

// Detail ID cache
var detailCache;
var oldHighlight = "-1";
function detail(id) {

	oldHighlight = id;
	document.getElementById("drow" + id).color =   "#FFFFFF";
	document.getElementById("drow" + id).bgColor = "#0084ca";

	detailCache = id;
	// Show details in right block
	parent.GB_showCenter("", "iframe/sidebar.php?page=detail&id=" + id, "iframe/sidebar.php?page=provider&id=" + id, 500, 500, closed);
}

function detail_gew(id) {

	oldHighlight = id;
	document.getElementById("drow" + id).color =   "#FFFFFF";
	document.getElementById("drow" + id).bgColor = "#0084ca";

	detailCache = id;
	// Show details in right block
	parent.GB_showCenter("", "iframe/sidebar.php?page=detail&id=" + id, "iframe/sidebar.php?page=provider&id=" + id, 500, 500, closed);
}

function closed() {
	if (oldHighlight != "-1") {
		document.getElementById("drow" + oldHighlight).color =   "#000000";
		document.getElementById("drow" + oldHighlight).bgColor = "#FFFFFF";
		oldHighlight = -1;
	}
}

