<!--
function loadpopup(refpage)	// generic popup size.
{
	var newPop=window.open(refpage,'name','height=550px,width=640px,left=0,top=0,resizable=yes,scrollbars=yes');
	if (window.focus) {
	    newPop.focus();
	}

}

function loadfpopup(header,subheader,priceline,intcode,picref,wideimg)	// on the fly product popups.
{
	var newPop=window.open('','name','height=550px,width=640px,left=0,top=0,resizable=yes,scrollbars=yes');
	if (window.focus) {
	    newPop.focus();
	}

	newPop.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n');
	newPop.document.write('<html>\n\n');
	newPop.document.write('<head>\n');
	newPop.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8">\n');
	newPop.document.write('<link rel=StyleSheet href="./styles/a10_popups.css" type="text/css">\n');
	newPop.document.write('<title>' + header + '</title>\n');
	newPop.document.write('</head>\n\n');

	newPop.document.write('<body>\n');
	newPop.document.write('<div id="pbody">\n');
  
	newPop.document.write('<div id="pheader">\n');
 	newPop.document.write('<h1>' + header + '</h1>\n');
	newPop.document.write('<h2>' + subheader + '</h2>\n');
	newPop.document.write('</div>\n\n');

	if (wideimg) {
		newPop.document.write('<img class="wide" src="' + picref + '" alt="' + header + '">\n'); }
	else {
		newPop.document.write('<img src="' + picref + '" alt="' + header + '">\n'); }

	if (intcode != '') {
		newPop.document.write('<p class="pcode">' + intcode + '</p>\n');
	}

 	newPop.document.write('<div id="pbottompush"></div>\n');
	newPop.document.write('</div>\n\n');
	  	
	newPop.document.write('<div id="pclose">\n');
	newPop.document.write('<p><a href="javascript:self.close()">Close</a></p>\n');
	newPop.document.write('<p class="ppricetag">Please note that prices are subject to change without prior notice.</p>\n\n');
	newPop.document.write('</div>\n\n');

	newPop.document.write('<div id="pfooter">\n');
	newPop.document.write('<p><b>A10 MEMORABILIA &copy;2007-2012 All Rights Reserved</b></p>\n');
	newPop.document.write('<p>PO Box 8703, Gaithersburg, MD  20898</p>\n');
	newPop.document.write('</div>\n\n');

  	newPop.document.write('</body>\n');
  	newPop.document.write('</html>\n');
	newPop.document.close();
}

function loadspopup(refpage,popstyle)		// popstyle is optional, because we test for undefined in setsstyle
{
	document.cookie =  "style=" + escape(popstyle);   // set a cookie (session only) with the style.
	var newPop=window.open(refpage,'name','height=550px,width=640px,left=0,top=0,resizable=yes,scrollbars=yes');
	if (window.focus) {
	    newPop.focus();
	}
}

-->
