﻿/****************************************************
*	SUONA											*
****************************************************/
var rootUrl = '/';
var serverName = null;

function Initialize()
{
	var url = document.URL;
	var parts = url.split('/');
	var serverName = parts[2].toLowerCase();
	if(serverName == 'localhost')
		rootUrl += 'suona/';
};
Initialize();


/* SEARCH FUNCTIONS */
var pageSearch = 'Cerca.aspx?cerca=';
function GoToSearchPage()
{
	var f = document.forms[0];
	if(f != null && f.cerca != null)
		document.location = rootUrl + pageSearch + URLEncode(f.cerca.value);
};

/* CART */
function ModificaNumero(appPath, IDnode)
{
	// get value
	var tf = document.forms[0]['tf_' + IDnode.toString()];
	if(tf != null)
	{
		var number = parseInt(tf.value);
		if(!isNaN(number))
		{
			document.location = appPath + '/Carrello.aspx?action=update&ID=' + IDnode.toString() + '&value=' + number;
		}
	}
};