function showHideMove(id) {
	var obj = document.getElementById(id);
	//alert(obj)
	
	if((obj.style.display == 'none') || (obj.style.display == '') ){
		obj.style.display = 'block';
	}else{
		obj.style.display = 'none';
	}
	
	/*
	obj.style.position = "absolute";
	obj.style.top = mvTop;
	obj.style.left = mvLeft;
	*/

}



function removeDuplicate(arrParametro)
{
	// Here we remove duplicate values from first array
	var array4 = new Array;
	for(var i=0; i<arrParametro.length; i++) 
	{
	      var xx = true;
		for(var j=i+1; j<arrParametro.length; j++)
		{
			if(arrParametro[i] == arrParametro[j])
				xx = false;		
		}	
		if(xx == true)
			array4.push(arrParametro[i]);
	}
	return array4;
}


var popUpMsg = "";