// PopUpPlayer Functions
function addPopupWindow(linker, width, height) {
	var elems = document.getElementsByTagName("a");
	for (var i=0; i<elems.length; i++) {
		if (elems[i].className==linker) {	
			addEvent(elems[i], "click", function() {
												 window.open(this.href, linker, "status=0, toolbar=0, location=0, menubar=0, resizable=1, scrollbars=0, height="+height+", width="+width);
									return false;							
																});
		}
	}
}