<!--
function CheckAll(checkboxAll){
	if (checkboxAll.checked) {   
		for (var i=0;i<document.form_prod_list.id_prod.length;i++)
		{
			document.form_prod_list.id_prod[i].checked=eval(true);
			var tr_Id = eval(document.form_prod_list.id_prod[i].value);
			//tr_id.style.backgroundColor = "#DDFFFF";
		}
		}else{
		for(var i=0;i<document.form_prod_list.id_prod.length;i++)
		document.form_prod_list.id_prod[i].checked=eval(false);
	}
}

function highlight(checkbox) {    
 if (document.getElementById) {
      var tr = eval(document.getElementById(checkbox.value));
   } else {
      return;
   }
   
   if (tr.style) {
      if (checkbox.checked) {
         tr.style.backgroundColor = "#DEFFFF";
      } else {
         tr.style.backgroundColor = "";
      }
   }
} 
	
//-->
<!--
/*
USAGE:
onclick="popupConfirm('<%=VarTextoADMIN(212)&" - "&Recordset1.Fields.Item("group_name"&vIdiomaADMIN).Value%>'); return document.MM_returnValue;"
*/
function popupConfirm(msg){//v1.0
document.MM_returnValue=confirm(msg);
}
//-->


<!--
function showhide1(numero_id){
document.getElementById('show'+numero_id).style.display="none"
document.getElementById('hide'+numero_id).style.display="block"
}
function showhide2(numero_id){
document.getElementById('show'+numero_id).style.display="block"
document.getElementById('hide'+numero_id).style.display="none"
}

//-->

//Hide status bar msg script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use
//configure status message to show
var statusmsg=""

function hidestatus(){
window.status=statusmsg
return true
}

/*
Open Centered Popup Window Script-
© DHTML Shock (www.dhtmlshock.com)
To add more shock to your site, visit www.DHTML Shock.com
*/

function OpenBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}