// JavaScript Document



	// ***********************************************************************************************	
	// Window open
	// ***********************************************************************************************	


			function openWindow(src, sX, sY)
			{
				swidth = screen.width;
				sheight = screen.height;	
			
				posx = (swidth/2)-(sX/2);
				posy = (sheight/2)-(sY/2);
			
			
			window.open('showimage.php?src=' + src,'wi2','toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=no, resizable=yes, fullscreen=no, channelmode=no, width='+sX+',height='+sY+',top='+posy+',left='+posx);
			}








	jQuery.noConflict(); 

	jQuery(document).ready(function(){
	


		jQuery('a').attr('onfocus', 'blur();');




	});


/* 

		// ***********************************************************************************************	
		// Flash Detection
		// ***********************************************************************************************	
		

		// -----------------------------------------------------------------------------
		// Globals
		// Major version of Flash required
		var requiredMajorVersion = 8;
		// Minor version of Flash required
		var requiredMinorVersion = 0;
		// Minor version of Flash required
		var requiredRevision = 0;
		// -----------------------------------------------------------------------------

		// Version check based upon the values entered above in "Globals"
		var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

		// Check to see if the version meets the requirements for playback
		if (!hasReqestedVersion) {				
			
			document.getElementById('noflashContainer').style.display='block';
	
		}	

 */
function MM_jumpMenu(targ,selObj,restore){ //v3.0
    eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
    if (restore) selObj.selectedIndex=0;
}