
function goProduct(prod) {
	var strUrl;
	
	//document.frmBrowse.page.value = intPage;
	//document.frmBrowse.submit();

	strUrl = 'http://www.vitech-int.com/?';
	strUrl = strUrl + '&act=prods';
	strUrl = strUrl + '&product=' + prod;
	
	strUrl = strUrl.replace(/ /g,'%20');

	parent.document.location=strUrl;
}