/* Abre la ventana del contacto

*/
var newWin=null;
var onscreen=false;
function NewWin(url,w,h)
{
newWin=window.open(url, 'picture', 'location=0,resizable=1,status=0,titlebar=1,directories=0,toolbar=0,menubar=0,scrollbars=1,status=0,screenX=100,screenY=100,width='+w+',height='+h);
newWin.focus();
onscreen=true;
}