function paypal_links()
{
	var a4Print = document.getElementById('a4-print');
		var link = (document.createElementNS) ? 
			document.createElementNS('http://www.w3.org/1999/xhtml', 'a') : 
			document.createElement('a');

		link.setAttribute('onclick', "document.a4form.submit(); return false;");
		link.onclick = function(){ document.a4form.submit(); return false; };
		link.setAttribute('href', '#');
		link.appendChild(document.createTextNode(a4Print.firstChild.getAttribute('value')));
	a4Print.replaceChild(link, a4Print.firstChild);

	var a3Print = document.getElementById('a3-print');
		var link = (document.createElementNS) ? 
			document.createElementNS('http://www.w3.org/1999/xhtml', 'a') : 
			document.createElement('a');

		link.setAttribute('onclick', "document.a3form.submit(); return false;");
		link.onclick = function(){ document.a3form.submit(); return false; };
		link.setAttribute('href', '#');
		link.appendChild(document.createTextNode(a3Print.firstChild.getAttribute('value')));
	a3Print.replaceChild(link, a3Print.firstChild);

	var viewCart = document.getElementById('view-cart');
		var link = (document.createElementNS) ? 
			document.createElementNS('http://www.w3.org/1999/xhtml', 'a') : 
			document.createElement('a');

		link.setAttribute('onclick', "document.cartform.submit(); return false;");
		link.onclick = function(){ document.cartform.submit(); return false; };
		link.setAttribute('href', '#');
		link.appendChild(document.createTextNode(viewCart.firstChild.getAttribute('value')));
	viewCart.replaceChild(link, viewCart.firstChild);
}

if (document.getElementById)
{
	paypal_links();
}