function contact(subject, areas) {
	if (typeof(subject)=="undefined") subject="";
	if (typeof(areas)=="undefined") areas="";

	window.open("contact.php?subject=" + subject + "&areas=" + areas, "contactwindow", "status=0,toolbar=0,location=0,menubar=0,directories=0,height=500,width=350");
}