function mostrar(tipo){
	switch (tipo) { 
    case 0: 
	
area= '				<table border="0">';
area = area + '                    <tr>'; 
area = area + '                      <td class="Estilo4a" width="218"><div style="margin-right:10px; margin-top:px; margin-bottom:px;" align="right">Do you have a domain name?:</div></td>';
area = area + '                      <td class="Estilo4a" width="58"><input type="checkbox" name="tiene" value="1" onClick="fun(form1.tiene.checked);">yes</td>';
area = area + '                      <td class="Estilo4a" width="224"><input name="url" type="text" class="desha" readonly value="www." ></td>';
area = area + '                      </tr>';
area = area + '                    <tr>';
area = area + '                      <td class="Estilo4a"><div style="margin-right:10px; margin-top:px; margin-bottom:px;" align="right">Choose your Web Design Package:</div></td>';
area = area + '                      <td colspan="2"><label>';
area = area + '                        <select name="pages" class="input_text">';
area = area + '						<option selected="selected">Select</option>';
area = area + '						<option>Bronze Pack Pack</option>';
area = area + '						<option>Silver Pack</option>';
area = area + '						<option>Gold Pack</option>';
area = area + '						<<option>Platinum Pack</option>';
area = area + '                        </select>';
area = area + '                      </label></td>';
area = area + '                    </tr>';
area = area + '                    <tr>';
area = area + '                      <td colspan="2" class="style11"></td>';
area = area + '                    </tr>';
area = area + '                  </table>';
	
	area= unescape(area);
			document.getElementById('espacio').innerHTML = area;
			document.getElementById('des').innerHTML = 'Give a brief description of your proyect, its functionality, goals, potential target, etc.';
       break 
    case 1: 
	area = '<table border="0"><tr><td class="Estilo4a"><input type="hidden" name="tiene" value="1"><div style="margin-left:8px; align="right">* What is your current web address (url)?</div></td>';
	area = area + '<td class="input_text"><input name="url" type="text" id="url" value="www." size="35"></td></tr></table>';
	area= unescape(area);
			document.getElementById('espacio').innerHTML = area;
			document.getElementById('des').innerHTML = '* Give a brief description of the type of web maintenance service you need. ';
       break 
    case 2: 
			document.getElementById('espacio').innerHTML = "";
			document.getElementById('des').innerHTML ='* Give a brief description of the type of web translation service you need. ';
       break 
	case 3: 
			document.getElementById('espacio').innerHTML = "";
			document.getElementById('des').innerHTML ='* Give a brief description of the type of web service you need. ';
       break 

} 

	}
	
	
function fun(val){
	if (val == false) {  document.form1.url.className='desha';}
	else {document.form1.url.className='habi';}
	document.form1.url.readOnly = !val;
	}