<!-- Begin
function MM_openWebWindow(category, pic) {
  switch (category)
{
  case "category1" : 
     var category_title = 'Closed Toe Pumps 1/2" - 2"';
     break;
  case "category2" : 
     var category_title = 'Closed Toe Pumps 2 1/2" - 3 1/2"';
     break;
  case "category3" : 
     var category_title = 'Sandals 2 1/2" - 3 1/2"';
     break;
  case "category4" : 
     var category_title = 'Sandals 1/4" - 2"';
     break;
  case "category5" : 
     var category_title = 'Platforms';
     break;
  case "category6" : 
     var category_title = 'Ballet Slippers and Flip-Flops';
     break;
  case "category7" : 
     var category_title = 'Children Shoes';
     break;
  case "category8" : 
     var category_title = 'Handbags - Evening';
     break;
  case "category8B" : 
     var category_title = 'Handbags - Bridal';
     break;
  case "category9" : 
     var category_title = 'Gloves and Accessories';
     break;
  case "category10" : 
     var category_title = 'Gloves and Accessories';
     break;
  case "category11" : 
     var category_title = 'Peep Toe';
     break;
}
  var newWindow=window.open('blankpopup.html','Photo','toolbar=0,status=0,menubar=0,scrollbars=0,resizable=0,width=500,height=420');
  newWindow.focus(); 
  newWindow.document.writeln('<html>');
  newWindow.document.writeln('<head>');
  newWindow.document.writeln('<title>Picture Gallery</title>');
  newWindow.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
  newWindow.document.writeln('<link href="layout.css" rel="stylesheet" type="text/css" />');
  newWindow.document.writeln('</head>');
  newWindow.document.writeln('<body>');
  newWindow.document.writeln('<p align="center">&nbsp;</p>');
  newWindow.document.writeln('<p><img src="photos/' + category + '/' + pic + '.jpg" width="480" height="360" border="1"></p>');
  newWindow.document.writeln('<p align="center">&nbsp;</p>');
  newWindow.document.writeln('<p align="center"><strong>Category: ' + category_title + ' - Picture #' + pic + '</strong></p>');
  newWindow.document.writeln('</body>');
  newWindow.document.writeln('</html>');
}
// End -->