﻿function Resize (width,height) {
    resizeTo(width,height);
    moveTo((screen.availWidth-width)/2,(screen.availHeight-height)/2);
}
function FlashControl(Url,Width,Height)
{
    //if (location.href.indexOf('localhost') > -1 && location.href.indexOf('partners') == -1)
    //    Url = '/PartnerPortal' + Url

	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="' + Width + '" height="' + Height + '">');
	document.write('<param name="movie" value="' + Url + '">');						  
	document.write('<param name="wmode" value="Transparent">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="loop" value="false">');
	document.write('<param name="allowFullScreen" value="false" />');
	document.write('<embed src="' + Url + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + Width + '" height="' + Height + '" wmode="Transparent" menu="False" allowFullScreen="false" loop="false"></embed>');
	document.write('</object>');
}