//top

function CurrencyPopup(QueryString)
{
  CurrencyWindow = window.open ('', 'CurrencyWindow', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,height=170,width=600')
  CurrencyWindow.focus()
  CurrencyWindow.location.href = 'http://www.xe.net/ecc/input.cgi?Template=sw&'+QueryString
}


function FixAllProductImageSizes() {
   var imgs = new Array();
   if (document.getElementsByTagName) {
      imgs = document.getElementsByTagName('IMG');
   }
   for (x=0; x < imgs.length; x++) {
      if (String(imgs[x].src).indexOf('varneysvampirestore.com/vvs-tn/') != -1) {
	     h = imgs[x].height;
	     w = imgs[x].width;

	     if (w > h) {
	        if (w > 190) {
		       imgs[x].width = 190;
			   imgs[x].height = (h / w) * 190
		    }
	     } else {
	        if (h > 190) {
		       imgs[x].height = 190;
			   imgs[x].width = (w / h) * 190
		    }
	     } 
      }
   }
}
