<script language="javascript">
function displayWindow(url)
{
var w, h, l, t;
var nc;
w = 600;
h = 409;
l = screen.width/4;
t = screen.height/4;
nc = url;
document.forms['SellSheet'].elements['sellitsheet'].value = nc;
// no title
// displayFloatingDiv('windowcontent', '', w, h, l, t);
// with title
displayFloatingDiv('windowcontent', 'Floating and Dimming Div', w, h, l, t);
}
</script>