//alert = function(s) { 
//
//	var ta = document.getElementById('debugTA');
//
//	if (!ta) {
//
//		var ta = document.createElement('textarea');
//
//		ta.id = 'debugTA';
//		ta.rows = 8; ta.cols = 80;
//		
//		document.body.appendChild(ta);
//	}
//
//	ta.value += s + '\n';
//}
