<?php

	header('Content-type: text/xml');

	include ("../../Utilidades/parse_vars.php");
	include ('../../Utilidades/Funciones.php');
	include ('../../Utilidades/envia_email.php');



	dbquery("DELETE FROM Cotizacion WHERE cot_id='$IdCotizacion'");

	$dom = new DOMDocument();

	$data = $dom->createElement('data');
	$dom->appendChild($data);

	$xmlString = $dom->saveXML();

	echo $xmlString;

?>