var min=8;
var max=18;

function resize(s)
{
 var td1, listing1, i, price;

 listing1 = document.getElementById('listStandard');
 if (listing1)
 {
	 td1 = listing1.getElementsByTagName('td');
	 for(i=0; i<td1.length; i++)
	 {				
		td1[i].style.fontSize = s+"px";
	 }				
 }
 price = document.getElementById('price');
 if (price) {
		price.style.fontSize = (s+12)+"px";
 }
 product = document.getElementById('product-show');
 if (product) {
	  product.style.fontSize = s+"px";
 }
}

function resizePageContent(s)
{
 page = document.getElementById('page-content');
 if (page) {
	  page.style.fontSize = s+"px";
 } 
 header = document.getElementById('page-header');
 if (header) {
	  header.style.fontSize = s+"px";
 }
}
