function capt(whose)
{
cap=window.open('','capt','resizable=yes,height=480,width=480,scrollbars=yes');
cap.focus();
cap.document.open();
cap.document.write('<html><head><title>'+whose+' Make-Over<\/'+'title><\/'+'head>');
cap.document.write('<body bgcolor="#ffffcc"><div align="center">');
cap.document.write('<iframe frameborder="0" src="captions/'+whose+'.html" width="100%" height="400px"></'+'iframe>');
cap.document.write('<p><a href="javascript:top.close()">Close<\/'+'a><\/'+'p>');
cap.document.write('<\/'+'div></'+'body><\/'+'html>');
cap.document.close();
}
