<!--
function ChangePage(wRivCli,strURL,Fornit)
{
var strPage; //stringa contenente la pagina da richiamare

if (strURL=="chisiamo") {
	strPage="chisiamo.asp"; }
	
if (strURL=="rivenditori" || strURL=="clienti") {
	strPage="prodotti.asp?idcat=6&RivCli=" + wRivCli + "&Fornit=" + Fornit; }
	
if (strURL=="login") {
	strPage="areacli.asp?par1=&action=1"; }
	
if (strURL=="carrello") {
	strPage="carrello.asp"; }

if (strURL=="home") {
	strPage="default.asp";
	parent.top.location.href=strPage;
	}
else {
	//parent.frames(1).location.href="catprod.asp?RivCli=" + wRivCli;
	parent.frames(1).location.href=strPage;
	}
/*
if (wRivCli != "") {
  	parent.frames(1).location.href=strURL + "&RivCli=" + wRivCli; }
else {
	parent.frames(1).location.href=strURL; }
*/
}
//-->
