function goPop(path,w,h) {
	var ua = navigator.userAgent;
	var height = (ua.indexOf("AppleWebKit") > -1) ? h + 21 : h;
	var url = "/video/index.php?path=" + path + "&width=" + w + "&height=" + h;
	var l = (window.screen.width / 2) - (w / 2 + 10);
	var t = (window.screen.height / 2) - (h / 2 + 40);
	var win2 = window.open(url, "win", "width=" + w + ",height=" + (height+20) + ",status=1,left=" + l + ",top=" + t + ",screenX=" + l + ",screenY=" + t);
	win2.focus();
}

function goDisclaimer(url,w,h) {
	var l = (window.screen.width / 2) - (w / 2 + 10);
	var t = (window.screen.height / 2) - (h / 2 + 40);
	var win2 = window.open(url, "popWin", "width=" + w + ",height=" + h + ",status=1,scrollbars=yes,left=" + l + ",top=" + t + ",screenX=" + l + ",screenY=" + t);
	win2.focus();
}

function openExhibition (ref) {
	var theLink;
	var kids = ref.childNodes;
	for(var i=0; i < kids.length; i++) { 
		if(kids[i].tagName == "A") {
			theLink = kids[i].href;
		}
	}
	location.href = theLink;
	return false;
}