function new_window(text_body, text_type) {
	var win = window.open("", "win", "width=450,height=225","statusbar=false" );
	with (win.document) {
	  open("text/html", "replace");
	  write("<html><head><title>- :: linux-way.com.ar ::</title>");
	  write("<style>body {margin: 0 0 0 0; padding: 15 15 15 15; background-color: #F0F0F0; background-image: url('images/logito.gif');  background-repeat: no-repeat; font-family: Verdana; font-size: 11px;} p {text-align: justify;} td {font-family: Verdana; font-size: 11px;} input {font-family: Verdana; font-size: 11px; border: 1px solid gray; }  </style></head>");
	  write("<body>");
	  
		if (text_type == "PLAN") {
			write("<h5>"+[text_body]+"</h5>");
			write("<p>Para poder brindarle un mejor asesoramiento acerca de nuestros <b>"+[text_body]+"</b>, por favor envie un e-mail a <a href='mailto:ventas@linuxway.com.ar'>ventas@linuxway.com.ar</a> indicando con el mayor grado de detalles sus requerimientos.</p>");
	  	write("<p>Recuerde adem&aacute;s indicar un <i>tel&eacute;fono</i>, <i>fax</i> o direcci&oacute;n de <i>correo electr&oacute;nico</i> donde podamos contactarlo. Si prefiere obtener asesoramiento telef&oacute;nico, no olvide indicar el horario en que prefiere que nuestro staff pueda contactarlo.</p>");
	  } else {
	  	write("<h5>Contratar servicio de Hosting</h5>");
			write("<form method='POST' name='frmHosting' action='whost.php'>");
			write("<table width='100%' border='0'>");
			write("	<tr>");
			write("		<td align='right'>Plan:</td>");
			write("		<td>&nbsp;</td>");
			write("		<td><input type='hidden' name='plan' value='"+[text_body]+"'><b style='color: red;'>"+[text_body]+"</b></td>");
			write("	</tr>");
			write("	<tr>");
			write("		<td align='right'>Dominio:</td>");
			write("		<td>&nbsp;</td>");
			write("		<td><input type='text' name='dominio'></td>");
			write("	</tr>");
			write("	<tr>");
			write("		<td align='right'>Nombre completo:</td>");
			write("		<td>&nbsp;</td>");
			write("		<td><input type='text' name='nombre'></td>");
			write("	</tr>");
			write("	<tr>");
			write("		<td align='right'>Tel&eacute;fono:</td>");
			write("		<td>&nbsp;</td>");
			write("		<td><input type='text' name='telefono'></td>");
			write("	</tr>");
			write("	<tr>");
			write("		<td align='right'>Email:</td>");
			write("		<td>&nbsp;</td>");
			write("		<td><input type='text' name='email'></td>");
			write("	</tr>");
			write("	<tr>");
			write("		<td>&nbsp;</td>");
			write("		<td>&nbsp;</td>");
			write("		<td><input type='submit' name='enviar' value='Contratar'></td>");
			write("	</tr>");
			write("</table>");
			write("</form>");
	    write("<br /><br />");
	  }
	  write("<br />");
	  write("<p><b>Muchas gracias</b>.</p>");
	  write("</body></html>");
	  close();
	}

}

