/*---------------------------------------------------------------------------------------*/
function _popup_ticket(url) {
	var width = 300;
	var height = 500;
	var features="location=no, menubar=no, status=yes, scrollbars=yes, resizable=yes, toolbar=no";
	var windowname = "_blank";
	if(width) {
		if(window.screen.width > width) {
			features+=", left="+(window.screen.width-width)/2;
		} else {
			width=window.screen.width;
		}
		features+=", width="+width;
	}
	if(height) {
		if(window.screen.height > height){
			features+=", top="+(window.screen.height-height)/2;
		} else {
			height=window.screen.height;
		}
		features+=", height="+height;
	}
	window.open(url, windowname, features);
}
/*---------------------------------------------------------------------------------------*/
function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
			anchor.getAttribute("rel") == "ex")
		anchor.target = "_blank";
	}
}
/*---------------------------------------------------------------------------------------*/
window.onload = externalLinks;
