

















































// JavaScript Document
//*****************************************************************************
// Do not remove this notice.
//
// Copyright 2000-2004 ReadyWeb Ltd
// 
//*****************************************************************************
		
function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}









function popUp(image,xWidth,yHeight) {
  var NewPhoto;
  var dot_pos = image.indexOf(".");
  NewPhoto = image.substring(0,dot_pos-1) + "2" + image.substring(dot_pos,image.length);

  mywin =

window.open('','popwin','resizable=yes,menubar=no,scrollbars=no,width='+xWidth+',height='+yHeight+',toolbar=no');

  mywin.document.write('<HEAD><TITLE>needacase.com cases</TITLE></HEAD><BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>');
  mywin.document.write('<img src='+NewPhoto+' border=0></BODY>');
  mywin.document.close();

  mywin.resizeTo(xWidth+10,yHeight+30);
  mywin.focus();
}