hola tengo la solucion al problema por si alguien le llega a pasar, en el tutorial dice que se debe poner entre <head> y </head> esta linea <script language="javascript" src="popcalendar.js"></script>, entonces yo lo tenia asi:
Código PHP:
Ver original<?php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="javascript" src="popcalendar.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Formato de Taxi</title>
<link href="hoja_estilo.css" rel="stylesheet" type="text/css" />
</head>
y lo cambie asi:
Código PHP:
Ver original<?php
?>
<script language="javascript" src="popcalendar.js"></script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>Formato de Taxi</title>
<link href="hoja_estilo.css" rel="stylesheet" type="text/css" />
</head>
entonces lo unico que hice es cambiar esta linea de lugar <script language="javascript" src="popcalendar.js"></script>, antes del <head>... y sale a la perfeccion inmediatamente al lado del control donde lo llamo... gracias foro!!