function movein(html,link,box){
out = "!";
add = "'";
temp = "" + html;

while (temp.indexOf(out)>-1) {
pos= temp.indexOf(out);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out.length), temp.length));
}

if (document.getElementById)
		document.getElementById("boxdescription"+box).innerHTML= temp;
else

document.location = link;
}

function newWindow(bookgif) {
   bookWindow=window.open(bookgif,'bookWin','toolbar=no,location=no,scrollbars=yes,width=453,height=404');
   bookWindow.focus();
}

function moveout(box){
out = "!";
add = "'";
temp = "";

while (temp.indexOf(out)>-1) {
pos= temp.indexOf(out);
temp = "" + (temp.substring(0, pos) + add + 
temp.substring((pos + out.length), temp.length));
}
document.getElementById("boxdescription"+box).innerHTML= temp;
}
