

<!--

// Fecha en modo Dia # mes aņo DW Object (c) 1999 Edwin Martinez, edwin@softhome.net
// Cualquier error o sugerencia hacermela llegar edwin@softhome.net.

var count = 0;
var exit=true;   

 function galeria() 
{
 window.open('http://www.negociosdominicanos.com/republica-dominicana/galeria-de-fotos-dominicanas.html', 'NewWindow2', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=900,height=900');

}

function clock() 
{
document.write("<font color='#000000' font size='1' font face='tahoma'>")
var mydate=new Date()
var year=mydate.getYear()
var hours = mydate.getHours()
var minutes = mydate.getMinutes()
var timeValue = "" + ((hours > 12) ? hours - 12 : hours)
timeValue  += ((minutes < 10) ? ":0" : ":") + minutes
timeValue  += (hours >= 12) ? " P.M." : " A.M."
var day=mydate.getDay();
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado")
var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre")
document.write("&nbsp; "+timeValue+" "+dayarray[day]+" "+daym+" de "+montharray[month]+" &nbsp;")
document.write("</font>")
}


function openPicture(imageName)
 {
    newWindow=window.open('', 'newWindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=600,height=600');
    newWindow.document.open();
	newWindow.document.write('<html><title>NegociosDominicanos.Com</title><body bgcolor="#E1E1E1" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td valign="middle"><p align="center">'); 
	newWindow.document.write('<img border=1 alt="NeGocios Dominicanos" src="'+imageName+'"></td></tr></table>'); 
	newWindow.document.write('</body></html>'); 
	newWindow.document.close();
	newWindow.focus();
}

// -->
