﻿
var urlCNT
var bOK = false
var siteBase

// Controllo di appartenenza alla struttura del frameSet e inizializzazioni
function setEnv(){
	try{
		if(TOP.frmTOP){
			bOK = true
		}
	}catch (Exception){
		// Not called from inside siteFramest.html
		if(location.href.indexOf('www.bcygni.com') != -1){
			siteBase = 'http://www.bcygni.com/htm/'
		}else{
			siteBase = 'D:/bCygni/Internet Site/BetaCygni/web-content/bcygni.com/htm/'
		}
		urlCNT = '../htm/' + location.href.split('htm/').pop()
		top.location.replace(siteBase + 'siteFrameset.html#' + urlCNT)
	}
	if(bOK){
		setNAV()
		setPageFooter()
		checkUC()
	}
}

// Richiamo della funzione di generazione del navigatore gerarchico in Frame NAV
function setNAV(){
	var bOK = false
	try{
		if(NAV.loaded == true){
			bOK = true
		}
	}catch(exception){
		bOK = false
	}
	
	if(bOK == true){
		urlCNT = CNT.location.href.split('/').pop()
		NAV.setNAV(urlCNT)
	}else{
		setTimeout('setNAV()', 200)
	}
}

// Page Bottom
function setPageFooter(){
	htmBot 	= '<table width="100%" style="text-align: center; border-top: 1px solid #92aacc;" cellpadding="7">'
			+ '<tr valign="top">'
			+ '<td style="font-size: 11px; color: #92aacc;">'
			+ 'Copyright &copy; Beta Cygni di Mingozzi Roberto - Tutti i diritti riservati'
			+ '<br>Telefono: <b>051 19985553</b> - Cellulare: <b>335 6345800</b> (Roberto Mingozzi)'
			+ '<br>Largo Brescia 1/C - 40139 Bologna BO - Partita IVA 02572161202'
			+ '<br>Per informazioni: <a class="bodyAct" href="mailto:info@bcygni.com">info@bcygni.com</a>'
			+ '</td>'
			+ '</tr>'
			+ '<tr><td><img src="/img/logos/timbroLogo.jpg" style="margin-top: 7px;"></td></tr>'
			+ '</table>'
	document.getElementById('pageFooter').innerHTML = htmBot
}

function checkUC(){
	try{
		if(pageUnderConstruction == true){
			htmPar = '<center>'
				   + '<br>'
				   + '<span class="orange"><strong>Page Under Construction</strong></span>'
				   + '<br><br>'
				   + '<img src="/img/pic/_underConstruction.jpg" />'
				   + '<br><br>'
				   + '<span class="blu">'
				   + 'Il nostro sito è tuttora in fase di revisione e definizione dei contenuti'
				   + '<br>'
				   + 'e ci scusiamo per l\'attuale indisponibilità della pagina di vostro interesse'
				   + '<br><br>'
				   + 'Vi preghiamo di tornare a visitarci a breve:'
				   + '<br>'
				   + 'è previsto che il sito sia completamente online entro la fine del mese di dicembre 2006'
				   + '<br><br>'
				   + '<strong>Grazie</strong>'
				   + '<br><br>'
				   + '</span>'
				   + '</center>'
			objPar = document.getElementsByTagName('P')[0]
			objPar.removeChild(objPar.firstChild)
			objDiv = document.createElement('DIV')
			document.getElementsByTagName('BODY')[0].insertBefore(objDiv, objPar)
			objDiv.innerHTML = htmPar
		}
	}catch(Exception){
		// VOID
	}
}















