function Menu(links) {
	location.href = links.options[links.selectedIndex].value;
}

function printswf() {
	
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' +
				'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="140">' + 
				'<param name="movie" value="flash/header.swf"><param name="quality" value="high"><param name="menu" value="false">'+
				'<embed src="flash/header.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" '+
				'type="application/x-shockwave-flash" width="700" height="140"></embed></object>');
}

var newwindow

function popitup(url , title) {

	if (newwindow && !newwindow.closed)	{ 
		newwindow.focus(); newwindow.document.clear() 
	} else	{ 
		newwindow=window.open('','','width=404,height=316,resizable=1') 
	}
	newwindow.document.writeln('<> <head> <title>' + title + '<\/title> <\/head> <body bgcolor=\"black\"> <center>');
	newwindow.document.writeln('<img src=' + url + ' title=\"' + title + '\" alt=\"' + title + '\" >');
	newwindow.document.writeln('<\/center> <\/body> <\/html>');
	newwindow.document.close();
}

function tidy()	{
	if (newwindow && !newwindow.closed) { newwindow.close(); }
}