/**********************************************************************
	Project: GAP Analysis
	Version: 0.0.1
	Netgenetix Media
 *********************************************************************/




/**********************************************************************
	Popups
 *********************************************************************/
function offsite(url) {
	return openWindow(url, 'offsite', 'directories,location,menubar,resizable,scrollbars,status,toolbar');
}

function mockup(url) {
	return openWindow(url, 'offsite', 'directories,location,menubar,resizable,scrollbars,status,toolbar');
}



/**********************************************************************
	FLASH
 *********************************************************************/

function flashContent(requiredFlashVersion, movieName, replacementImage, width, height) {
	if ( getFlashVersion() >= requiredFlashVersion) {
		document.write('<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + requiredFlashVersion + ',0,0,0" width="' + width + '" height="' + height + '" border="0" VIEWASTEXT>');
		document.write('<param name="movie" value="' + movieName + '" />');
		document.write('<param name="quality" value="high" />');
		document.write('<embed src="' + movieName + '" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed></object>');
	} else {
		document.write('<img src="' + replacementImage + '" width="' + width + '" height="' + height + '" alt="" border="0" /><br />');
	}
}
