function status()
{
}
var capchanged=0;
function echeck()
{
 if (capchanged==1)
 {
  var result=confirm("You have edited captions that were not saved.  Do you want to save them now?");
  if (result==true)
  {
   document.getElementById('submit').click();
  }
 }
}
function capchange()
{
 capchanged=1;
}
function capsave()
{
 capchanged=0;
}
function ProgressBox()
{
var url='/loading.html';
var name='gallerystatus';
var features =
'left=100'+
',top=100'+
',screenX=100'+ 
',screenY=100'+
',width=400'+ 
',height=100'+
',directories=0'+
',location=0'+
',menubar=0'+ 
',scrollbars=0'+ 
',status=0'+
',toolbar=0'+
',resizable=0'+
',fullscreen=no';
window.open (url,name,features);
}
