<!--
/*************************************************************
*   This files contains JavaScript functions for general use.
*************************************************************/

/* function verFicha():
 *	Muestra la ficha del vehículo pasado por ID
 */
function verFicha(id) {
	w = 650;
	h = 600;
	// Calculate center coordinates for window display
	// Calculate center coordinates for window display
	var xOffset = (screen.width - w) / 2;
	var yOffset = (screen.height - h) / 2;
	window.open('ver_ficha.php?id='+id,'FICHA','resizable=yes,scrollbars=yes,width='+w+',height='+h+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
}

/* function verProducto():
 *	abre una ventana para ver una imagen de un producto, w = ancho de la imagen and h = alto de la imagen
 */
function verProducto(filename, w, h) {
	// Ponemos una ventana con la foto
	var ancho = parseInt(w) + 50;//100;
	var alto = parseInt(h) + 75;//100;
	if (alto > 600) {
		alto = 600;
	}
	if (ancho > 800) {
		ancho = 800;
	}
	var xOffset = (screen.width - ancho) / 2;
	var yOffset = (screen.height - alto) / 2;
	
	window.open(filename, 'PRODUCTO', 'resizable=yes,scrollbars=yes,statusbar=no,width=' + ancho + ',height=' + alto+',top='+yOffset+',left='+xOffset+'');
}

/* function openWindow():
 *	Opens a window with filename, w = width and h = height
 */
function openWindow(filename, w, h) {
	// Calculate center coordinates for window display
	// Calculate center coordinates for window display
	var xOffset = (screen.width - w) / 2;
	var yOffset = (screen.height - h) / 2;
	window.open(filename,'PORTADA','resizable=yes,scrollbars=yes,width='+w+',height='+h+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
}
//-->