function help() { 
popup = window.open("about:blank","_blank","toolbar=yes,location=no,directories=yes,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=500,left=0,top=0");
popup.document.write('<html><head><title>Ayuda</title>');
popup.document.write('<SCRIPT LANGUAGE="JavaScript1.2">location = "http://www.hobbysoft.com.ve/ayuda.htm"; </SCRIPT>');
popup.document.write('<link rel="stylesheet" href="style.css" type="text/css">');
popup.document.write('</head><body>');
popup.document.write('<center><h3>Ayuda del Administrador</h3>');
popup.document.write('<a href="http://www.hobbysoft.com.ve/ayuda.htm">Entrar</center><br>');
popup.document.write('</body></html>');
popup.focus();
return true;
}

function check()
{
	input_box=confirm("¿Está usted seguro?");
	if (input_box==true)

	{ 
	// Output when OK is clicked
	return true;
	}

	else
	{
	// Output when Cancel is clicked
	return false;
	}
}
