function _HpbJumpURLinNewWindow(url) 
{
  if (url != '')
  {
    window.open(url, '_blank','width=550 height=900');
  }
}
function newWindowL(){
    mapWindow = window.open('rules.html','mapWin','toolbar=no,scrollbars=yes,resizable=yes,width=400,height=450');
                if (navigator.appName.charAt(0) == "N" &&
                navigator.appVersion.charAt(0) >= 3){
                mapWindow.focus();
                }
}

function includeFlash( url, width, height, title, quality )
{
	document.write( '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + width + '" height="' + height + '" title="' + title + '">' );
	document.write( '<param name="movie" value="' + url + '" />' );
	document.write( '<param name="quality" value="' + quality + '" />' );
	document.write( '<embed src="' + url + '" quality="' + quality + '" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>' );
	document.write( '</object>' );
}


