function Debug(on){
	
	var color = new Array();
	color[0]="#BFCFFF";
	color[1]="#727EA3";
	var num = 0;

	if(on != 1) {on = 0;} 
	
	if(on){
		var ref = window.open('','mywin','left=1024,top=0,width=250,height=768,toolbar=1,resizable=1, scrollbars=1');
		if(ref == null || ref.closed){}else{

		}
	}

	this.write = function(item){
		if(on){
			num = Math.abs(num -1);
			item = '<div style="background-color: '+ color[num] +'">'+item + '</div>';
			var x = ref.document.getElementById('brisi');
			if(!x){ ref.document.write( "<div id='brisi'><a href='javascript: document.write();document.close();'>brisi<div>" );}
			ref.document.write(ref.document.body.innerHTML + item );
			ref.document.close();
		}
	} 
}