function test(){
alert(window.innerWidth);
}
  function newCategory()
  {
    document.getElementById('newCategory').style.display='block';
    document.upload.gallery.value='';
  }
  
  function checkUpload()
  {
    var isValid = false;

 	if(document.upload.ufile.value == '')
      {
        alert("No Photo Selected!");
      }
      else if(document.upload.gallery.value == '')
      {
      	alert("Select A Category!");
      }
      else
       isValid = true;
       
     return isValid;
   
  }
  
  function checkCatalogue()
  {
  
  }
