// JavaScript Document

var doflash = false;

 var player = new MM_FlashInfo();
 if (player.installed) {
   if (player.version && player.version >= 7) { // NEEDS FLASH VERSION 8 OR GREATER
     doflash = true;
   }
  //alert('You have Flash version ' + player.version);
 }

function popup_open(url, height) {
	var url, height;
	var width = 730;
		if (window.showModalDialog) {
			window.showModalDialog(url,"popup","dialogWidth:" + width + "px;dialogHeight:" + height + "px");
		} else {
			window.open(url,'popup','height=' + height + ',width=' + width + ',toolbar=no,directories=no,status=no, menubar=no, scrollbars=no, resizable=no , modal=yes');
		}
}