function FlashScript(fsrc,fwidth,fheight){
  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="'+fwidth+'" height="'+fheight+'">')
  document.write ('<param name="movie" value="'+fsrc+'">')
  document.write ('<param name="quality" value="high">')
  document.write ('<param name="wmode" value="transparent">')
  document.write ('<embed src="'+fsrc+'" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+fwidth+'" height="'+fheight+'"></embed></object>')
}

function PopupScript(furl,fwidth,fheight){
  window.open(furl,'','left=200, top=200,width='+fwidth+',height='+fheight+',resizable=no, scrollbars=no, toolbar=no');
}

function na_restore_img_src(name, nsdoc){
  var img = eval((navigator.appName.indexOf('Netscape', 0) != -1) ? nsdoc+'.'+name : 'document.all.'+name);
  if (name == '')
    return;
  if (img && img.altsrc) {
    img.src    = img.altsrc;
    img.altsrc = null;
  } 
}

function na_preload_img(){ 
  var img_list = na_preload_img.arguments;
  if (document.preloadlist == null) 
    document.preloadlist = new Array();
  var top = document.preloadlist.length;
  for (var i=0; i < img_list.length-1; i++) {
    document.preloadlist[top+i] = new Image;
    document.preloadlist[top+i].src = img_list[i+1];
  }
}

function na_change_img_src(name, nsdoc, rpath, preload){ 
  var img = eval((navigator.appName.indexOf('Netscape', 0) != -1) ? nsdoc+'.'+name : 'document.all.'+name);
  if (name == '')
    return;
  if (img) {
    img.altsrc = img.src;
    img.src    = rpath;
  }
}

function Go_URL()
{
	var myindex = document.frmUrl.select1.selectedIndex;

	if (document.frmUrl.select1.options[myindex].value != "")
	{
		window.open(document.frmUrl.select1.options[myindex].value);
	}
}

