﻿/*
	
	general Javascript
	
*/



function sig(){
	// represent
	
	alert("\t         Matthias Dailey\n---------------------------------------------------------\n\tmatthias.dailey@gmail.com")
	
	//╓─╖║╙╜╟╢
}





function list(o){
	var i,t="";
	for(i in o){
		t+=i+": "+o[i]+";\n";
	}
	alert(t);
}


