//------------------------------------------------------------------------------------
// site specific functions
//------------------------------------------------------------------------------------
function MW_launchFLASH(strURL, bReturnResult) {
	// determine the window size...then size the FLASH movie accordingly...
	// possible sizes include:
	// 318 x 540
	// 412 x 700
	// 544 x 924
	// 695 x 1180
	var numWindowWidth = 540;
	
	if (screen.width) {
		/*if (screen.width > 1200) {
			numWindowWidth = 1180;
		}
		else if (screen.width > 1000) {
			numWindowWidth = 924;
		}
		else*/ if (screen.width > 790) {
			numWindowWidth = 680;
		}
	}
	
	numWindowHeight = parseInt(numWindowWidth / 1.7);
	
	if (bReturnResult) {
		return MW_window_new(strURL, 'MW_window_flash', false, numWindowHeight, numWindowWidth, true, false, false);
	}
	else {
		MW_window_new(strURL, 'MW_window_flash', false, numWindowHeight, numWindowWidth, true, false, false);
	}
}
