function viewSwf(URL,width,height){
	document.writeln("<object type='application/x-shockwave-flash' width='"+width+"' height='"+height+"' data='"+URL+"'>");
	document.writeln("<param name='movie' value='"+URL+"' />");
	document.writeln("<param name='wmode' value='transparent' />");
	document.writeln("<param name='quality' value='high' />");
	document.writeln("</object>");
}
function viewYoutube(URL,width,height){
	document.writeln("<object width='"+width+"' height='"+height+"'>");
	document.writeln("<param name='movie' value='"+URL+"' />");
	document.writeln("<embed src='"+URL+"' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"' />");
	document.writeln("</object>");
}
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") == "external")
		anchor.target = "_blank";
	}
}
window.onload = externalLinks;