function popUpLarge(fname,caption)
{
var fname = "/shuttle/lib/photo/large/" + fname + ".jpg";
var Win=window.open("","large",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=800,height=600');
Win.document.write("<html><head><meta http-equiv=Content-Type content='text/html; charset=Shift-JIS'><title>" + caption + "</title></head>");
Win.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
Win.document.write("<img src='"+ fname + "' border='0' alt=" + caption + ">");
Win.document.write("</body></html>");
Win.document.close();
}

function popUpMedium(fname,winwidth,winheight,caption)
{
var fname = "/shuttle/lib/photo/medium/" + fname + ".jpg";
var Win=window.open("","medium","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+winwidth+",height="+winheight);
Win.document.write("<html><head><meta http-equiv=Content-Type content='text/html; charset=Shift-JIS'><title>" + caption + "</title></head>");
Win.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
Win.document.write("<img src='"+ fname + "' border='0' alt=" + caption + ">");
Win.document.write("</body></html>");
Win.document.close();
}

