El codigo es algo asi:
Código Javascript:
Ver original
<script language="javascript">
var timeoutID = null;
/* Must pass in the "anchors" ID so that Lytebox can call the correct "onclick" handler... */
function loadLytebox(id) {
if (typeof myLytebox != 'undefined') {
// if the myLytebox object exists, start it up!
myLytebox.start(document.getElementById(id));
} else {
// wait 1/10th of a second and attempt loading again...
if (timeoutID) { clearTimeout(timeoutID); }
timeoutID = setTimeout('loadLytebox("'+id+'")', 100);
}
}
</script>
Y en el body:
Código HTML:
Ver original
<body onLoad="loadLytebox('promocion');">
De seguro es algo facil pero la verdad es que ahorita ya no doy para mas jijijiji.
De verdad agradecere mil su ayuda chicos !!!
 
 





