// <!-- BEGIN OPEN POP-UP WINDOW -->
function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}
// <!-- END OPEN POP-UP WINDOW -->

// <!-- BEGIN OPEN IMAGE POP-UP WINDOW -->
function MM_openPicWindow(Type,Name,Width,Height,Alt,Left,Top) {  // v4.01
	newWindow = window.open("","newWindow","width="+Width+",height="+Height+",scrollbars=no,left="+Left+",top="+Top);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+Alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	if (Type == "swf"){
	newWindow.document.write('<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"'+Width+'\" height=\"'+Height+'\">');
	newWindow.document.write('<param name=movie value=\"'+Name+'\"><param name=quality value=high>');
	newWindow.document.write('<embed src=\"'+Name+'\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"'+Width+'\" height=\"'+Height+'\">');
	newWindow.document.write('</embed></object>');
	} else {
	newWindow.document.write('<img src=\"'+Name+'\" width='+Width+' height='+Height+' title=\"'+Alt+'\">');
 	}
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
// <!-- END OPEN IMAGE POP-UP WINDOW -->