//--------------------------------------------------
// OPEN WINDOW
//--------------------------------------------------

function openWindow(url, width, height) {
	
	var d = new Date();
	var title = d.getTime();
	var attributeString = "";
	if (width != 0) {
		attributeString = "width=" + width;
	}
	if (height != 0) {
		if (attributeString != "") { attributeString += ", "; }
		attributeString += "height=" + height;
	}
	attributeString += ", menubar=no, location=no, toolbar=no, directories=no, scrollbars=yes, resizable=yes";

	window.open(url, title, attributeString);
	
}

//--------------------------------------------------
// SHOW MORE INFO
//--------------------------------------------------

function showMoreInfo(elementID) {
	document.getElementById(elementID).style.display = "block";
	document.getElementById(elementID).style.visibility = "visible";
}

//--------------------------------------------------
// HIDE MORE INFO
//--------------------------------------------------

function hideMoreInfo(elementID) {
	document.getElementById(elementID).style.display = "none";
	document.getElementById(elementID).style.visibility = "hidden";
}