function popup(theUrl, FileName,width,height) 
{
  var MyWin; 
  width=0+width+0;
  height=0+height+0;
  stilesfondo="style=\"background-image: url('resource/images/loading.gif'); background-repeat: no-repeat; background-attachment: fixed; background-position: center;\""
  MyWin = window.open('','_blank','toolbar=no,menubar=no,fullscreen= no ,scrollbars=no,resizable=no,width='+width+',height='+height+',top=0,left=0');
  var myDoc = '<html>'+ '<head>'+'<title>Foto '+FileName+'</title>'+'</head>'+'<body topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0 '+stilesfondo+'>'+'<img src="'+theUrl+'">'+'</body>'+'</html>';
	MyWin.document.write(myDoc); 

	LeftPosition = (MyWin.screen.width) ? (MyWin.screen.width-width)/2 : 0;
	TopPosition = (MyWin.screen.height) ? (MyWin.screen.height-height)/2 : 0;
                                   MyWin.moveTo(LeftPosition, TopPosition);                                             
  MyWin.focus();
}

function popup2(obj,SId,FileType)//(theUrl, FileName,width,height) 
{
  var MyWin; 
  MyWin = window.open('do.php?obj=site&cmd=thumb&tobj='+obj+'&id='+SId+'&file='+FileType,'_blank','toolbar=no,menubar=no,fullscreen= no ,scrollbars=no,resizable=no,top=0,left=0');
/*
	LeftPosition = (MyWin.screen.width) ? (MyWin.screen.width-width)/2 : 0;
	TopPosition = (MyWin.screen.height) ? (MyWin.screen.height-height)/2 : 0;
                                   MyWin.moveTo(LeftPosition, TopPosition);                                             
*/
  MyWin.focus();
}