var loadContent = new RemoteFileLoader('loadContent');
function loadInto(src, destId, evt)
{
	var ok = loadContent.loadInto(src.href || src.getAttribute('href'), destId);
	if (ok) cancelEvent(evt);
};
loadContent.waitHTML = '<div style="text-align: left; width: 100%; height: 20px; font-size: 10pt; font-family: tahoma, arial, helvetica, sans-serif; color: #808080;"><img src="/order.gif" width="16" height="16" hspace="8" align="absmiddle" alt="">Loading image to purchase order ...</div>';
function orderbox(productName)
{
	orderwindow=window.open("","order","width=440, height=130")
	orderwindow.document.write('<title>Added Image To Purchase Order</title><p style="font-family: tahoma, arial, helvetica, sans-serif; font-size: 14px;">You successfully added the following image to your purchase order: <b>'+ productName +'</b></p><form><fieldset style="margin: 0; padding: 0; border: none; font-family: Trebuchet MS, Arial, Helvetica, sans-serif; font-size: 13px; color: #333333;"><input style="width: 200px; cursor: pointer; font: bold 1.2em Trebuchet MS, Arial, Helvetica, sans-serif;" type="button" value="Continue Browsing" onClick="window.close()"></fieldset></form>')
	orderwindow.document.close()
	orderwindow.document.bgColor="#EEEEEE"
	orderwindow.self.focus()
	orderwindow.setTimeout('window.close()', 5000);
	return true
}