Buongiorno a tutti e grazie come sempre per l'aiuto che mi date, in particolare un mega grazie a Tonicopi...
Ecco il mio nuovo quesito...
Ho inserito un peel sul sito joomla che sto preparando, ma siccome ho preferito non usare il modulo offerto nella sezione download mi trovo con una leggera difficoltà: ho bisogno che al click del mouse sull'advertising (la pubblicità), quest'ultima venga aperta nella stessa pagina contenente il peel; un pò come si faceva per l'html ove si indicava al link di aprirsi tramite il codice target="_top". Penso che il problema sia nel file js contenente il codice del peel, per cui ve lo posto:
/*
Soldiweb.net Rulez
*/
var esel = new Object();
// --------------------------------------------------------- MODIFY TARGET URL
esel.ad_url = escape('http://www.net-matrix.net/bs/index.php?option=com_content&view=section&layout=blog&id=2&Itemid=16'); // Cambia l'url a seconda della pagina che vuoi che appaia ogni volta che clicchi il peel
// --------------------------------------------------------- END TARGET URL
esel.small_path = 'http://www.net-matrix.net/bs/peel/esel_s.swf'; // Angolino peel <---lascia invariato
esel.small_image = escape('http://www.net-matrix.net/bs/peel/image/beispiel_s.swf'); // Immagine dietro il peel <--- lascia invariato
esel.big_path = 'http://www.net-matrix.net/bs/peel/esel_b.swf'; // Lascia invariato
esel.big_image = escape('http://www.net-matrix.net/bs/peel/image/tempg.gif'); // Immagine dietro il peel
// --------------------------------------------------------- NON CAMBIARE PIù NIENTE
esel.small_width = '100';
esel.small_height = '100';
esel.small_params = 'ico=' + esel.small_image;
esel.big_width = '650';
esel.big_height = '650';
esel.big_params = 'big=' + esel.big_image + '&ad_url=' + esel.ad_url;
function sizeup987(){
document.getElementById('eselcornerBig').style.top = '0px';
document.getElementById('eselcornerSmall').style.top = '-1000px';
}
function sizedown987(){
document.getElementById("eselcornerSmall").style.top = "0px";
document.getElementById("eselcornerBig").style.top = "-1000px";
}
esel.putObjects = function () {
document.write('<div id="eselcornerSmall" style="position:absolute;width:'+ esel.small_width +'px;height:'+ esel.small_height +'px;z-index:9999;right:0px;top:0px;">');
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
document.write(' id="eselcornerSmallObject" width="'+esel.small_width+'" height="'+esel.small_height+'">');
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ esel.small_path +'?'+ esel.small_params +'"/>');
document.write(' <param name="wmode" value="transparent" />');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+esel.small_params+'"/>');
document.write('<embed src="'+ esel.small_path + '?' + esel.small_params +'" name="eselcornerSmallObject" wmode="transparent" quality="high" width="'+ esel.small_width +'" height="'+ esel.small_height +'" flashvars="'+ esel.small_params +'" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div></script>');
document.write('<div id="eselcornerBig" style="position:absolute;width:'+ esel.big_width +'px;height:'+ esel.big_height +'px;z-index:9999;right:0px;top:0px;">');
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"');
document.write(' id="eselcornerBigObject" width="'+ esel.big_width +'" height="'+ esel.big_height +'">');
document.write(' <param name="allowScriptAccess" value="always"/> ');
document.write(' <param name="movie" value="'+ esel.big_path +'?'+ esel.big_params +'"/>');
document.write(' <param name="wmode" value="transparent"/>');
document.write(' <param name="quality" value="high" /> ');
document.write(' <param name="FlashVars" value="'+ esel.big_params +'"/>');
document.write('<embed src="'+ esel.big_path + '?' + esel.big_params +'" id="eselcornerBigEmbed" name="eselcornerBigObject" wmode="transparent" quality="high" width="'+ esel.big_width +'" height="'+ esel.big_height +'" flashvars="'+ esel.big_params +'" swliveconnect="true" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
document.write('</object></div>');
setTimeout('document.getElementById("eselcornerBig").style.top = "-1000px";',1000);
}
esel.putObjects();
Spero di essere stato abbastanza chiaro, altrimenti chiedo scusa anticipatamente e resto a vostra disposizione per chiarimenti... Toni conto su di te, sento che anche questa volta mi sarai di estremo aiuto.
Grazie cmq a tutti! ;-)