//-----------------------------------------------
// Dynamic Content 2.0                          |
//  Now supports IE, NS4, NS6                   |
// (c) 2002 Premshree Pillai                    |
// Web : http://www.qiksearch.com               |
// E-mail :premshree@hotmail.com                |
// Use freely as long as this message is intact |
//-----------------------------------------------
// Location of script : http://www.qiksearch.com/javascripts/dynamic-content20.htm
// Support IE4+, NS6+.

var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1;
var ns6=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1;

function showContent(content_price, content_shipping, price_div, ship_price_div)
{
	if(ie4)
	{
		showPriceObj=document.all.price_div;
		showShipPriceObj=document.all.ship_price_div;
	}
	if(ns6)
	{
		showPriceObj=document.getElementById(price_div);
		showShipPriceObj=document.getElementById(ship_price_div);
	}
	if(ie4||ns6)
	{
		if(showPriceObj.innerHTML!=content_price)
		{
			showPriceObj.innerHTML=content_price;
			showShipPriceObj.innerHTML=content_shipping;
		}
	}
}