
var popup = null;

function display(mytitle,ProductName,myimage) {
html = "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html><head><title>#" + mytitle + "</title><link rel=\"stylesheet\" href=\"/css/style.css\" type=\"text/css\"></head><body leftmargin=0 marginwidth=10 topmargin=8 marginheight=10 bgcolor=\"#C5BC89\" oncontextmenu=\"return false;\" ondragstart=\"return false\" onselectstart=\"return false\"><center><img src=\"/images/loading.gif\" name=\"neww\" width=100 height=2 alt=\"\"><br><a href=\"javascript:opener.location='/cgi/shop.cgi?QUERY&IT=" + mytitle + "';opener.focus()\"><img src=\"" + myimage + "\" border=0 name=\"image\" onload='document.neww.src=\"/images/replacement.gif\";window.resizeTo(document.image.width+40,document.image.height+140);'></a><br><br><span class=\"mediumtext\"><b><a href=\"javascript:opener.location='/cgi/shop.cgi?QUERY&IT=" + mytitle + "';opener.focus()\">" + ProductName + "</a></b></span></center></body></html>";
 popup=window.open('http://www.hillsburys.com','','width=200,height=200,toolbar=0,left=25,top=10,directories=0,menuBar=0,scrollbars=0,resizable=1,status=0');
 popup.document.open();
 popup.document.write(html);
 popup.document.focus();
 popup.document.close();
}

