function inputText(id,text) {
	obj = document.getElementById(id);
	if (obj.value == text){
		obj.value = "";
	} 
	else if (obj.value == "") {
		obj.value = text;
	}
}

function cleanField(id,text) {
	obj = document.getElementById(id);
	if (obj.value == text){
		obj.value = "";
	} 
}

function popUp(id,title,ingress)
		{
			var t = title;
			var a = window.open('','');
			a.document.write('<html>');
			a.document.write('<head>');
			a.document.write('<title>');
			a.document.write(t);
			a.document.write('</title>');
			a.document.write('</head>');
			a.document.write('<body onload=\"window.print();\">');
			a.document.write('<h2>');
			a.document.write(t);
			a.document.write('</h2>');
			a.document.write('<br>');
			a.document.write('<strong>');
			a.document.write(document.getElementById(ingress).innerHTML);
			a.document.write('</strong>');
			a.document.write('<br>');
			a.document.write(document.getElementById(id).innerHTML);
			a.document.write('<br>');
			a.document.write('</body>');
			a.document.write('</html>'); 
			
			a.document.close();
			
		}
