// JavaScript Document - por Diogo Dourado

function webchatmc() {
 if(navigator.product == 'Gecko') {
   document.mciform["interface"].value = 'mozilla';
 }else {
   document.mciform["interface"].value = 'ie';
 }
 
   if ((document.mciform.Nickname.length==0) || (document.mciform.Nickname.value==null) || (document.mciform.Nickname.value=='')) {
	   alert('Você deve informar um apelido');
	   document.mciform.Nickname.focus();  
   } else {
	   var popUp = "http://www.montesclaros.net/w/redireciona.php?ParceiroImg=" + document.mciform.ParceiroImg.value + "&ParceiroUrl=" + document.mciform.ParceiroUrl.value + "&interface=" + document.mciform.interface.value + "&Nickname=" + document.mciform.Nickname.value;
	   window.open(popUp, '', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,innerWidth='+700+',width='+700+',height='+500+',left='+20+', top='+20+'');
	}
	return false;
}