// JavaScript Document
var universalThumb = '';
function expandDiv(what) {
	if (document.getElementById(what).style.display == "none") {
		document.getElementById(what).style.display = "";
		lastOpenDiv = what;
	} else {
		document.getElementById(what).style.display = "none";
		lastOpenDiv = "";
	}
	
}

function catchArticleMediaClick(clicker,caption,th){
	universalThumb = '<?=SITE_LINK.MEDIADIR?>'+th;
	Mediabox.open(clicker, caption);
}
