	<!--

function order_now_button(PID, PNAME, PPRICE, PSHIPPING, TARGET, EXTRASNAME){

	document.write('<div class="order_button">');
	document.write('<BR><BR><font size="+2"><b>$' + PPRICE.toFixed(2) + '</b></font><br>');
	document.write('<font size="-2">( shipping $' + PSHIPPING.toFixed(2) + ' additional )</font><br>');
	document.write('<form action="https://www.paypal.com/cgi-bin/webscr" method="post"');
	if (TARGET != ""){
		document.write(' target="' + TARGET + '" ');
	}
	document.write('>');
   document.write('<input type="hidden" name="cmd" value="_xclick">');
	document.write('<input type="hidden" name="business" value="B3247499VSHDE">');
	document.write('<input type="hidden" name="lc" value="US">');
	document.write('<input type="hidden" name="item_name" value="' + PNAME + '">');
	document.write('<input type="hidden" name="item_number" value="' + PID + '">');
	document.write('<input type="hidden" name="amount" value="' + PPRICE.toFixed(2) + '">');
	document.write('<input type="hidden" name="currency_code" value="USD">');
	document.write('<input type="hidden" name="button_subtype" value="products">');
	document.write('<input type="hidden" name="shipping" value="' + PSHIPPING.toFixed(2) + '">');
	document.write('<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted">');
	if (EXTRASNAME != ""){
		document.write('<table align=center>');
		document.write('<tr>');
		document.write('<td>');
		document.write('<input type="hidden" name="on0" value="Extra_Description">');
		document.write(EXTRASNAME);
		document.write('</td>');
		document.write('</tr><tr>');
		document.write('<td><input type="text" name="os0" maxlength="60"></td>');
		document.write('</tr>');
		document.write('</table>');
	}
	document.write('<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">');
	document.write('<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">');
	document.write('</form>');
	document.write('</div>');
	return true;
}
	
	function order_me(cform){ 
		alert ("Odered "+cform.pident.value+"");
		cform.submit();
		window.close();
		return true;
	}
	function load(file,target) {
	   if (target != ''){
	      target.window.location.href = file;
	  		window.close();
		} else {
		   window.location.href = file;
		}
	}
		
window.name='mainwin';
	vers = 1.0;
		function displayDate()	{ 
		var now = new Date(); 
		var year = now.getYear(); 
		var day = now.getDate(); 
		var month = now.getMonth(); 
		var monthname; 
		if (year = 100) 
			year = 1900 + year;
		
	  		if(month==0) monthname = "January"; 
	  		if(month==1) monthname = "February"; 
	  		if(month==2) monthname = "March"; 
	  		if(month==3) monthname = "April"; 
	  		if(month==4) monthname = "May"; 
	  		if(month==5) monthname = "June"; 
	  		if(month==6) monthname = "July"; 
	  		if(month==7) monthname = "August"; 
	  		if(month==8) monthname = "September"; 
	  		if(month==9) monthname = "October"; 
	  		if(month==10) monthname = "November"; 
	  		if(month==11) monthname = "December"; 
		document.write (monthname + "   " + day + "," + "   " + year); 
	} 
	  function makeWin(url) {
	      agent = navigator.userAgent;
	      windowName = "Sitelet";
	      params  = "";
	      params += "toolbar=0,";
	      params += "location=0,";
	      params += "directories=0,";
	      params += "status=0,";
	      params += "menubar=0,";
	      params += "scrollbars=1,";
	      params += "resizable=1,";
	      params += "width=700,";
	      params += "height=500";
	      win = window.open(url, windowName , params);
	      if (agent.indexOf("Mozilla/2") != -1 && agent.indexOf("Win") == -1) {
	          win = window.open(url, windowName , params);
	      }
	      if (!win.opener) {
	          win.opener = window;
	      }
	
	  };
	// -->