function ChooseDen() { 
maxLength = 500; 
M = window.document.book.message.value.length; 
window.document.book.msgCT.value = maxLength-M; 
if (M > maxLength) { 
window.document.book.message.value = window.document.book.message.value.substring(0,maxLength); 
window.document.book.msgCT.value = 0; } 
}

function openWin(URL, win_width, win_height, description)
{
  features = "width=" + win_width + ",height=" + win_height + ",status=no,toolbar=no,menubar=no";
  image='background="'+URL+'"';
  itle='<html><head><title>' + description;
  myWin= open( "", "View", features );
  myWin.document.open();
  myWin.document.write(itle);
  myWin.document.write('</title></head><body style="margin:0px;">');
  myWin.document.write('<table width="100%" height="100%" cellpadding="0" cellpadding=0><tr><td ');
  myWin.document.write(image);
  myWin.document.write('><img src="img/border.png" width="450" height="450"></td></tr></table>');
  myWin.document.write("</body></html>");
  myWin.document.close();  
}
