function getWinNm() {
	var now = new Date();
	var hr = new String(now.getHours());
	var mn = new String(now.getMinutes());
	var sc = new String(now.getSeconds());
	var ml = new String(now.getMilliseconds());
	var winNm = hr + mn + sc + ml;
	return winNm;
}

function abrirDocumento(doc){ 
	var izquierda = (screen.availWidth - 550) / 2;
	var arriba = (screen.availHeight - 400) / 2; 
	var opciones = "width=550" +
		 ",height=400" + 
		 ",left=" + izquierda +
		 ",top=" + arriba +
		 ",toolbar=YES" +
		 ",resizable=YES" +
		 ",scrollbars=YES";
	
	window.open(doc,getWinNm(),opciones);
}

function abrirEnlace(doc){ 
	var izquierda = (screen.availWidth - 550) / 2;
	var arriba = (screen.availHeight - 400) / 2; 
	var opciones = "width=550" +
		 ",height=400" + 
		 ",left=" + izquierda +
		 ",top=" + arriba +
		 ",location=YES" +
		 ",menubar=YES" +
		 ",toolbar=YES" +
		 ",resizable=YES" +
		 ",scrollbars=YES";
	
	window.open(doc,getWinNm(),opciones);
}

function mercado(idMercado) {
	document.f.idMercado.value=idMercado;
	document.f.action="productosBuscar.php";
	document.f.submit();
}

function mercados() {
	document.f.action="productosResultado.php";
	document.f.submit();
}

function load() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(41.54212,2.082081), 13);
		GEvent.addListener(map, "click", function() {
			window.open('http://maps.google.es/maps?f=q&hl=es&geocode=&q=brilloworld&sll=40.396764,-3.713379&sspn=14.013095,26.806641&ie=UTF8&ll=41.54212,2.082081&spn=0.107669,0.209427&t=h&z=13','_blank')
		});
	}
}
