function buscar_google(){
	document.google.submit();
}

function incluir_flash(sURL, nWidth, nHeight, sColor){
	var sFlash = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' id='flash_forum' width='" + nWidth + "' height='" + nHeight + "'>";
	sFlash += "<param name='movie' value='" + sURL + "'><param name='quality' value='high'><param name='bgcolor' value='" + sColor + "'>";
	sFlash += "<embed src='" + sURL + "' type='application/x-shockwave-flash' width='" + nWidth + "' height='" + nHeight + "' bgcolor='" + sColor + "' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></object>";
	document.write(sFlash);
}

function foto_preview(cad)
{
	window.open(cad,'Callejero','toolbar = 0,location = 0,directories = 0,status = 0,menubar = 0,scrollbars = 0 , width = 790, height = 570, left = 0,top = 0');
}

function getBanner(){
	var sCadena;
	var aBanners=new Array(3);
	
	aBanners[0]="banner_01"; 
	aBanners[1]="banner_02";
	aBanners[2]="banner_03";
	/*
	aBanners[3]="banner_04";
	*/
	
	sCadena = aBanners[Math.round((aBanners.length - 1) * Math.random())];

	return sCadena;
}

function IrA(sURL){
	this.location = sURL;
}

function IrA2(sURL){
	var ventana
	
	ventana=window.open(sURL);
}

function makeArray(n) {
	this.length = n
	return this
}

function getFecha() {
	monthNames = new makeArray(12)
	monthNames[1] = "Enero"
	monthNames[2] = "Febrero"
	monthNames[3] = "Marzo"
	monthNames[4] = "Abril"
	monthNames[5] = "Mayo"
	monthNames[6] = "Junio"
	monthNames[7] = "Julio"
	monthNames[8] = "Agosto"
	monthNames[9] = "Septiembre"
	monthNames[10] = "Octubre"
	monthNames[11] = "Noviembre"
	monthNames[12] = "Diciembre"
	
	var oneDate = new Date();
	var theDay = oneDate.getDate();
	var theMonth = monthNames[oneDate.getMonth() + 1];
	var theYear = oneDate.getFullYear();
	
	document.write(theDay + " de " + theMonth + " de " + theYear);
}

function cerrar_ventana(){
	window.close();
}

function abrir_callejero(){
	window.open('/secciones/callejero.html','Callejero','toolbar = 0,location = 0,directories = 0,status = 0,menubar = 0,scrollbars = 0 , width = 790, height = 570, left = 0,top = 0');
}