function confirm_action(message) {	var agree=confirm(message);	if (agree)        return true;	else        return false;} function player(location) {	w = 384;	h = 180;					if (navigator.userAgent.indexOf('Safari') != -1)	{ 		w=w-2;		h=h-1;	}		pop = window.open(location, 'wmnPlayer', 'toolbar=no, location=no, scrolling=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width='+w+', height='+h);	pop.focus();}//------------------------------------------------------------------------------var noContent = '';var liveReq = false;var liveReqLast = '';var liveReqDestination = '';if (window.XMLHttpRequest) {	liveReq = new XMLHttpRequest();} else if (window.ActiveXObject) {	liveReq = new ActiveXObject("Microsoft.XMLHTTP");}function loadContent(destination, uri) {	liveReqDestination = destination;		if (liveReqLast != liveReqDestination && liveReqDestination != '') {				document.getElementById(liveReqDestination).innerHTML = noContent;		if (window.XMLHttpRequest) {			liveReq = new XMLHttpRequest();		} else if (window.ActiveXObject) {			liveReq = new ActiveXObject("Microsoft.XMLHTTP");		}				liveReq.onreadystatechange = liveReqProcessReqChange;		liveReq.open('GET', uri);		liveReq.send(null);	}}function liveReqProcessReqChange() {	if (liveReq.readyState == 4) {		document.getElementById(liveReqDestination).innerHTML = liveReq.responseText;			}}//------------------------------------------------------------------------------