// added 18.01.05 to deal with the new tag format
function tagNewWindow(gotoUrl, tag, channel, section, lang, event) {
	createPageTag(tag, channel, section, lang, event)
	window.open(gotoUrl);
}

// added 18.01.05 by to deal with the new tag format and Popups at the same time
function tagPopUp(gotoUrl, tag, channel, section, lang, event, name, width, height, extra) {
	createPageTag(tag, channel, section, lang, event)
	setTimeout("popUp('"+gotoUrl+"','"+name+"',"+width+","+height+",'"+extra+"')", 200);
}