function pippo(link,destination)
{

	if (destination=='nuova') {
		
		window.open(link,'winName','resizable=no, scrollbars=no, width=660,height=480');
		}

	else if (destination=='blank') {
		
		window.open(link,'winName','toolbar=yes, location=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes');
		
	} 
	
	else if (destination=='blankpx') {
		
		window.open(link,'winName','toolbar=no, location=no, status=no, menubar=no, scrollbars=yes, resizable=yes');
		
	}
	 
	
	else if (destination=='accessori') {
		
		window.open(link,'winName','resizable=no, scrollbars=no, width=735,height=435');
		
	}
	
/*		else if (destination=='dressing') {
		
		window.open(link,'winName','resizable=no, scrollbars=no, width=640,height=460');
		
	}*/
	
	
		else if (destination=='popup') {
		
		window.open(link,'winName','resizable=no, scrollbars=no, width=400,height=400');
		
	}
		
	
		else if (destination=='configurator') {
		
		window.open(link,'winName','resizable=no, scrollbars=no, width=782,height=575');
		
	}
	
	else {
	
		document.location = link;
	}
}