function openMP3(fileName)
			{
	if (!window.focus) return;
	var sendWin = window.open(fileName  ,"sendWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=30");
				
	sendWin.focus();
	}
	
	function openImage(fileName)
				{
		if (!window.focus) return;
		var sendWin = window.open(fileName  ,"sendWin","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=288,height=216");
					
		sendWin.focus();
		}



 function openNewWindow(w,h,nav,loc,sts,menu,scroll,resize,name,url) {//v1.0
  var windowProperties=''; if(nav==false) windowProperties+='toolbar=no,'; else
   windowProperties+='toolbar=yes,'; if(loc==false) windowProperties+='location=no,';
  else windowProperties+='location=yes,'; if(sts==false) windowProperties+='status=no,';
  else windowProperties+='status=yes,'; if(menu==false) windowProperties+='menubar=no,';
  else windowProperties+='menubar=yes,'; if(scroll==false) windowProperties+='scrollbars=no,';
  else windowProperties+='scrollbars=yes,'; if(resize==false) windowProperties+='resizable=no,';
  else windowProperties+='resizable=yes,'; if(w!="") windowProperties+='width='+w+',';
  if(h!="") windowProperties+='height='+h; if(windowProperties!="") {
   if( windowProperties.charAt(windowProperties.length-1)==',')
    windowProperties=windowProperties.substring(0,windowProperties.length-1); }
  window.open(url,name,windowProperties);
 }
 // -->
