
var PageSubLevel = "";
var selectedMenuIndex = 0;

function drawMenuItem(idx, text, link){
	var itemClass;
	if(idx == selectedMenuIndex)
		itemClass = 'mainMenuItemSelected';
	else{		
		itemClass = 'mainMenuItem';
		if(link != null && link != '') text = '<a href="' + link + '" class="mainMenuItem">' +  text + '</a>';		
	}
	document.writeln('<tr><td class="mainMenuItem">&nbsp;&nbsp;</td><td nowrap class="' + itemClass + '">' +  text + '</td></tr>');	
}

function drawMenu(activeItem){
	if(activeItem != null) selectedMenuIndex = activeItem;
	document.writeln('<TABLE cellSpacing="0" cellPadding="4" width="100%" height="100%" border="0" >');

	document.writeln('<tr><td class="mainMenuItem"></td><td class="mainMenuItem"><IMG height="4" src="' + PageSubLevel + 'Images/trasp.gif" width="1"></td></tr>');	

	drawMenuItem(0,"Home", PageSubLevel + "index.html");
	drawMenuItem(2,"WhoCRM", PageSubLevel + "whocrm.html");
	drawMenuItem(11,"Risto'", PageSubLevel + "risto.html");
	drawMenuItem(1,"DataSoul", PageSubLevel + "datasoul.html");
	drawMenuItem(5,"Plug-Ins", PageSubLevel + "plugins.html");
	drawMenuItem(8,"DataSoul Tutorial", PageSubLevel + "tutorial_start.html");
	drawMenuItem(6,"Samples", PageSubLevel + "samples.html");
	//drawMenuItem(4,"Northwind Sample", PageSubLevel + "nwindsample.html");
	drawMenuItem(7,"Configuratore", PageSubLevel + "configurator.html");
	drawMenuItem(3,"Downloads", PageSubLevel + "http://www.softandroll.com/downloads/downloads.aspx");
	drawMenuItem(9,"Prerequisiti", PageSubLevel + "prerequisites.html");
	drawMenuItem(10,"Attivazione", "http://www.softandroll.com/activation/ActivationForm.aspx");
	
	document.writeln('<tr><td colspan="2" class="mainMenuItem" align="center"><br><br><IMG src="' + PageSubLevel + 'images/squares.gif" border="0"></td></tr>');
	document.writeln('<tr><td colspan="2" class="mainMenuItem" align="center"><br><br><A href="mailto:products@softandroll.it" class="mainMenuItem">Mail To <STRONG>Soft \'n Roll</STRONG></A></td></tr>');
	document.writeln('<tr><td class="mainMenuItem">&nbsp;&nbsp;</td><td height="100%" nowrap class="mainMenuItem">&nbsp;</td></tr>');	
	document.writeln('</TABLE>');
	document.writeln('</td><td colspan="2" width="100%" valign="top">');
}			
		
function drawHeader(title1, title2){
	document.title = title1 + ' ' + title2;
	if(title2 == null) title2 = ''; else title2 = '&nbsp;' + title2;
	document.writeln('<table height="100%" width="100%" border="0" cellspacing="0" cellpadding="0">');
	document.writeln('<tr><td class="mainMenuItem" align="middle" height="65"><a href="http://www.softandroll.it"><IMG src="' + PageSubLevel + 'images/SoftAndRollLogo3.gif" border="0"></a></td>');		
	document.writeln('<td class="mainMenuItem" nowrap><span class="Header1">&nbsp;&nbsp;&nbsp;&nbsp;' + title1 + '</span><span class="Header1Alt">' + title2 + '</span></td><td class="mainMenuItem" align="right" nowrap><IMG src="' + PageSubLevel + 'images/squares.gif" border="0">&nbsp;&nbsp;&nbsp;&nbsp;</td></tr>');
	// Aggiunge la riga di separazione
	document.writeln('<tr><td colspan="3" height="4" bgcolor="#ff6666"><IMG height="4" src="' + PageSubLevel + 'Images/trasp.gif" width="1"></td></tr>');
	document.writeln('<tr><td>');

}

function drawFooter(){
	document.writeln('</td></tr><tr><td class="mainMenuItem">');
	document.writeln('</td><td colspan="2" height="100%" valign="bottom"><br>&nbsp;&nbsp;&nbsp;&nbsp;<SPAN class="Content">&copy; 2011 Soft \'n Roll S.r.l.  All rights reserved.<br/>');
	document.writeln('&nbsp;&nbsp;&nbsp;&nbsp;P. IVA: 02699510133<br/>');
	document.writeln('&nbsp;&nbsp;&nbsp;&nbsp;Sede legale: Via Monte Bianco, 38, 22070 Locate Varesino (CO) Italy</SPAN><br><br></td></tr>');
	document.writeln('</table>');
}		
			

function infoRequest(product){
	product = escape(product);
	window.location = 'mailto:products@softandroll.it&SUBJECT=Richiesta%20informazioni%20su%20' + product + '&BODY=Desidero%20ricevere%20maggiori%20informazioni%20su%20' + product;
}

