﻿function do_submit(cmd, objid) {
	document.getElementById('cmd').value = cmd;
	document.getElementById('objid').value = objid;
	document.mainform.submit();
}

function do_submit_param(cmd, objid, param) {
	document.getElementById('cmd').value = cmd;
	document.getElementById('objid').value = objid;
	document.getElementById('cmdparam').value = param;
	document.mainform.submit();
}

function do_select(obj, cmd, objid) {
	document.getElementById('cmd').value = cmd;
	document.getElementById('objid').value = objid;
	document.getElementById('cmdparam').value = obj.value;
	//alert('about to post event="' + cmd + '" from objid="' + objid + '", cmdparam="' + document.getElementById('cmdparam').value + '"');
	document.mainform.submit();
}

function MM_jumpMenu(targ, selObj, restore) {
	eval(targ + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
	if (restore) selObj.selectedIndex=0;
}

function pubblica(id,fieldcase) {
	document.postback.cmd.value = fieldcase;
	document.postback.id.value = id;
	document.postback.submit();
}

function colora(elem,riga,colore) {
	elem.style.backgroundColor = colore;	
	elem.style.cursor = "pointer";	
}

function decolora(elem,riga,colore)	{
	elem.style.backgroundColor = colore;	
}

function messaggio(id, etic) {
	if (confirm('ATTENZIONE: questa operazione è irreversibile\nSei sicuro di voler procedere con l\'eliminazione?') == true) 
		window.location = 'delete.asp?tipo=' + etic +'&id=' + id;
}

function messaggio_gallery(id, etic) {
	if (confirm('ATTENZIONE: questa operazione cancellerà tutte le immagini contenute nella presente gallery\nSei sicuro di voler procedere con l\'eliminazione?') == true) 
		window.location = 'delete.asp?tipo=' + etic +'&id=' + id;
}
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function loadFlash(j_id, j_swf, j_width, j_height, j_wmode, j_color, j_str) {
	document.write('<div id="apa_fldiv_' + j_id + '" style="padding:0px"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
	document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" ');
	document.write('width="' + j_width + '" height="' + j_height + '" id="menutop" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="' + j_swf +'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="wmode" value="' + j_wmode + '" />');
	document.write('<param name="flashvars" value="titolo=' + j_str + '" />');
	document.write('<param name="bgcolor" value="' + j_color + '" />');
	document.write('<embed 	src="' + j_swf +'" quality="high" bgcolor="' + j_color + '" ');
	document.write('width="' + j_width + '" height="' + j_height + '" wmode="' + j_wmode + '" name="menutop" align="middle" ');
	document.write('allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ');
	document.write('flashvars="titolo=' + j_str + '" ');
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object></div>');
}

function canc(testo,idtesto){
	if (document.getElementById(idtesto).value==testo){
		document.getElementById(idtesto).value="";
	}
}
function restore(testo,idtesto){
	if (document.getElementById(idtesto).value==""){
		document.getElementById(idtesto).value=testo;
	}
}

function hideFlashDivs(hide) {
	var divs = document.getElementsByTagName('div');
	for (var i = 0; i < divs.length; i++) {
		var div = divs[i];
		if (div.id.indexOf('apa_fldiv_') == 0) {
			if (div.id.slice(-5) == 'block') div.style.display = 'none';
			else div.style.visibility = hide ? 'hidden' : 'visible';
		}
	}
}

function hideSelects(hide) {
	var selects = document.getElementsByTagName('select');
	for (var i = 0; i < selects.length; i++) {
		var select = selects[i];
		select.style.visibility = hide ? 'hidden' : 'visible';
	}
}



