First commit 10/07/2002

This commit is contained in:
2021-09-12 22:42:46 +02:00
commit dd07011e79
206 changed files with 5948 additions and 0 deletions

23
prod/moreinfo.js Normal file
View File

@ -0,0 +1,23 @@
function abreVentana( hVentana, url, W, H )
{
if ( hVentana.location && !hVentana.closed )
{
hVentana.location.href = url;
} else {
hVentana =
window.open(url,hVentana,"width="+W+",height="+H+",top=50,left=50,resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no");
if ( !hVentana.opener ) hVentana.opener = self;
}
if ( window.focus ) hVentana.focus();
}
var hwd_info="hwd_info";
function moreInfo( idp )
{
abreVentana( hwd_info, "prod/moreinfo.php?idp="+idp, 700, 350 );
}
function aCesta( idp, und, pv, fp )
{
this.location.href="./?dgo=prod/listado_productos.php&FiltrarPor="+fp+"&item="+idp+"&cantidad="+und+"&importe="+pv;
}