function moreinfo(fname)
	{
	if (screen.width >= 1024 && screen.height >= 768){
	  posx = 900;
	  posy = 450;
	  } 
	else{
  	  if (screen.width == 800 && screen.height == 600){
	    posx = 700;
	    posy = 350;
	    } 
	  else{
	    if (screen.width < 800 && screen.height < 600)
		  alert ("Please raise your monitors resolution to 800x600")
		else{		
	      posx = 1100;
		  posy = 800;
		}
	  }
	}
    	wleft = (screen.width - posx) / 2;
		wtop = (screen.height - posy) /2;
		opts = "height=380, width=650, resizable=no, scrollbars=no, toolbar=no";
		opts = opts + ",left=" + wleft + ",screenx=" + wleft;
		opts = opts + ",top=" + wtop + ",screeny=" + wtop;
		window.open(fname,"uvradio",opts,false);
	}
	
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}