if (oAmazon = parent.document.getElementById('amazon')) oAmazon.style.visibility='hidden';

function viewImg(thisOne) {
	text = thisOne.childNodes[0].src;
	//alert(text);
	img = new Image;
	img.src = text;
	thisWin = window.open(text, 'imageViewer', 'toolbar=no,status=yes,menubar=yes,resizable=yes,scrollbars=auto');
	thisWin.resizeTo(img.width,img.height);
}

function viewPDF(thisOne) {
	if (thisOne == 'priceList') text = 'priceList.pdf';
	else text = '';
	if (text.length > 0) {
		thisWin = window.open(text, 'pdfViewer', 'toolbar=no,status=yes,menubar=yes,resizable=yes,scrollbars=auto');
		thisWin.resizeTo(400, 600);
		thisWin.moveTo(0,0);
	}
	else {}
}