function buzzWindowA(pickimage, picktext, ww, hh)
{
var mainwindow = window.open('blank.html', 'buzz', 'width=10, height=10', 'scrollbars=no');
mainwindow.document.the_image.src=pickimage;
mainwindow.resizeTo(ww, hh);
mainwindow.document.the_image.height=hh;
mainwindow.document.the_image.width=ww;
mainwindow.document.bgColor="#ffffff";
}

function buzzWindowC(chosenimage, chosentext, ww, hh)
{
var bigw = ww + 50;
var bigh = hh + 50;
var bw = window.open('','buzz','width=5, height=5');
bw.document.write("<html><title>");
bw.document.write(chosentext);
bw.document.write("</title>");
bw.document.write("<body bgcolor='#ffff00' marginheight='0' marginwidth='0' topmargin='0' leftmargin='0'>");
bw.document.write("<table border=0 width='100%' height='100%'><tr><td align='center' valign='middle'>");
bw.document.write("<img src='");
bw.document.write(chosenimage);
bw.document.write("' width='");
bw.document.write(ww);
bw.document.write("' height='");
bw.document.write(hh);
bw.document.write("'>");
bw.document.write("</td></tr></table></body></html>");
bw.resizeTo(bigw, bigh);
}

function buzzWindowB(chosenimage, chosentext, ww, hh)
{
var bw = window.open('','buzz','width=5, height=5');
bw.document.write("<html><title>");
bw.document.write(chosentext);
bw.document.write("</title>");
bw.document.write("<body bgcolor='#ffff00' marginheight='0' marginwidth='0' topmargin='0' leftmargin='0'>");
bw.document.write("<img src='");
bw.document.write(chosenimage);
bw.document.write("' width='");
bw.document.write(ww);
bw.document.write("' height='");
bw.document.write(hh);
bw.document.write("'>");
bw.document.write("</body></html>");
bw.resizeTo(ww, hh);
}