/**
 * @author fkorssjoen
 */

 
 //Seteo de variables
var OASposToShow = new Array();
var OAS_listpos = "Left1,Left2";

OASpos = 'Right1,Top,x94,x95';
OASposArr = OASpos.split(",");

for(i=0; i < OASposArr.length; i++){
	if( document.getElementById("oas" + OASposArr[i].toUpperCase()) != null ){
		if(OAS_listpos != ""){
			OAS_listpos += ",";
		}
		OAS_listpos += OASposArr[i];
	}
}

//Funciones Mostrar
function OASmostrarRIGHT1(){
	if(document.getElementById("oasRIGHT1") == null) return;
	OASposToShow[OASposToShow.length] = "oasRIGHT1";
	OAS_AD('Right1');
}

function OASmostrarX94(){
	if(document.getElementById("oasX94") == null) return;
	OASposToShow[OASposToShow.length] = "oasX94";
	OAS_AD('x94');
}

function OASmostrarX95(){
	if(document.getElementById("oasX95") == null) return;
	OASposToShow[OASposToShow.length] = "oasX95";
	OAS_AD('x95');
}

function OASmostrarTOP(){
	if(document.getElementById("oasTOP") == null) return;
	OASposToShow[OASposToShow.length] = "oasTOP";
	OAS_AD('Top');
}

function OASmostrarX01(){
	if(document.getElementById("oasX01") == null) return;
	OAS_AD('x01');
}

//Funciones de Inicio
function OASstart(){
	if (document.all) window.attachEvent('onload', setPos);
	else window.addEventListener('load', setPos, false);
}

function setPos() {
	for(i=0; i < OASposToShow.length; i++){
		document.getElementById(OASposToShow[i]).appendChild(document.getElementById(OASposToShow[i]+"src"));
    document.getElementById(OASposToShow[i]+"src").style.display='inline';
  }
}
//Funciones de Inicio END
