// JavaScript Document


function rentalpic(picnum, desc) {
windowprops = "width=" + (640) + ",height=" + (480);
 
text = "<html><head><title>Pro Sound and Lights</title></head><body bgcolor=#C9C9C9" + "><center><img src='images/rentalpics/" + picnum + ".jpg'  border=1 name='image1'><br>" + desc;

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}

