/*
* *****************************************************************************
* PATH AMBIENTE
* *****************************************************************************
*/
var ambiente="lit.grattaevinci.com";
var URL = "//"+ambiente+"/infoprodotti/paginaCortesiaVetrina.html";

/*
* *****************************************************************************
* FUNZIONE INFOLAUNCHER - apre pop-up contenente le informazioni sul prodotto *
* *****************************************************************************
*/
function infoLauncher(IDConcorso) {
// calcolo per l'apertura della popup al centro dello schermo
	var pLeft  = (screen.width - 600) / 2;
	var pRight = (screen.height - 350) / 2;
    window.open(URL, 'info', 'left=' + pLeft + ', top=' + pRight + ', width=' + 600 + ', height=' + 350 + ', scrollbars=no, resizable=no , status=yes');
}



/*
* *******************************************************************************************
* FUNZIONE TRYLAUNCHER - apre pop-up nella quale sara' erogato il gioco in modalita' "demo" *
* *******************************************************************************************
*/
function tryLauncher(IDConcorso) {

// calcolo per l'apertura della popup al centro dello schermo
	var pLeft  = (screen.width - 600) / 2;
	var pRight = (screen.height - 350) / 2;
    window.open(URL, 'info', 'left=' + pLeft + ', top=' + pRight + ', width=' + 600 + ', height=' + 350 + ', scrollbars=no, resizable=no , status=yes');
}


/*
* ***********************************************************************
* FUNZIONE BUYLAUNCHER INFO LAVORI IN CORSO - apre pop-up nella quale ci sarà la pagina di cortesia *
* ***********************************************************************
*/
function buyLauncher(IDConcorso, Token, IDConto, IDRivenditore) {	 
// calcolo per l'apertura della popup al centro dello schermo
	var pLeft  = (screen.width - 600) / 2;
	var pRight = (screen.height - 350) / 2;
    window.open(URL, 'info', 'left=' + pLeft + ', top=' + pRight + ', width=' + 600 + ', height=' + 350 + ', scrollbars=no, resizable=no , status=yes');
}



