function sall(){
 if(!document.listmsg.Msg) return;
 if(!document.listmsg.Msg.length)
	document.listmsg.Msg.checked = document.listmsg.Msg.checked ? false : true;
 else
	for(var i=0;i<document.listmsg.Msg.length;i++)
		document.listmsg.Msg[i].checked = document.listmsg.Msg[i].checked ? false : true;
}

function chbg(x,id,c)
{
	if(x=='over'){
		document.getElementById(id).style.backgroundColor = '#CECECE';
	}
	else{
		document.getElementById(id).style.backgroundColor = c;
	}
}

function chbd(x,id)
{
	if(x=='over'){
		//document.getElementById(id).style.border = '#000000 1px solid;';
	}
	else{
		//document.getElementById(id).style.border = 0;
	}
}

function open_new(url,w,h) 
{
	w+=0;h+=60;
	//window.open(name_foto+".gif",'foto','top=30, left=30, menubar=0, toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, width=270, height=180');
	myWin = window.open(url ,'open_new','top=0, left=0, menubar=0, toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, width='+w+', height='+h+'');
	var winWidth=w; 
	var winHeight=h;
	//alert(winWidth); 
	myWin.resizeTo(winWidth, winHeight); 
	var winPosX=screen.width/2-winWidth/2; 
	var winPosY=screen.height/2-winHeight/2;  
	myWin.moveTo(winPosX, winPosY); 
	myWin.focus();
	//self.name = 'zrp_admin';
}
