
//*********************** GLOBAL FUNCTIONS ***********************//
//****************************************************************//



function HideContent(d) {
	document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
	document.getElementById(d).style.display = "";
}
function ReverseContentDisplay(d) {
	if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = ""; }
	else { document.getElementById(d).style.display = "none"; }
}

function onDropDownChange()
{
	var myIndex = document.getElementById("showMedias").clients.selectedIndex;
	var clientId = document.getElementById("showMedias").clients.options[myIndex].value;
	myIndex = document.getElementById("showMedias").mediaTypes.selectedIndex;
	var mediaTypeId = document.getElementById("showMedias").mediaTypes.options[myIndex].value;
	location.href = "admin.php?pageId=showMedias&clientId=" + clientId + "&mediaTypeId=" + mediaTypeId;
}

// ----------------------- OPEN POPUP WINDOWS -----------------------//
function open_window(link, title, width, height){
		
	window.open(link, title, 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height);
}



