// flash embed //

function pageLoaded() {
	var el = document.getElementById( "flashlogo" );
	if ( el ) {
		var fe = new FlashEmbed(
			"/assets/tp_logo.swf",			// path to the swf to embed
			8,						// minimum flash version - whole numbers only
			"160", 					// width of embed (can also be a %)
			"60", 					// height of embed (can also be a %)
			"#669900",				// background color of embed
			"flash_element" );				// id of new embed element to be created
		
		// pass in the id of the element in html whose contents are to be
		//	replaced with the flash file:
		fe.create( 'flashlogo',"" );
	}
}

window.onload = pageLoaded;

 
    // open and center new window
    var maillistWindow;
    function openMaillist(sp) {
    	if ( maillistWindow && !maillistWindow.closed ) {
    		maillistWindow.focus();
    	}
    	else {
			var width = 700;
			var height = 700;
			var left = parseInt((screen.availWidth/2) - (width/2));
			var top = parseInt((screen.availHeight/2) - (height/2));
			var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
			maillistWindow = window.open(sp + "Maillist", "maillist", windowFeatures);
		}
        return false;
    }
    