var mails = new Array();
mails[0] = new mailObj('info@cafe-k.com','','','','Nachricht an:');
mails[1] = new mailObj('stiftung-bildhauerei@faktorkunst.com','','','','Nachricht an:');
mails[2] = new mailObj('kontakt@faktorkunst.com','','','','Nachricht an:');


function mailObj(to, cc, bc, su, bo, pr) {
	this.to = to    // To:
	this.cc = cc   // CC:
	this.bc = bc   // BCC:
	this.su = su   // Subject:
	this.bo = bo  // Body:
	this.pr = pr;  // Priorität:
	this.sendMail = sendMail;
}

function sendMail() {
	var urlStr = this.to;

	if (this.cc) {
	     urlStr = formatMailurl(urlStr);
 	     urlStr += "body=" +escape(this.bo);
	}

	
 
	location='mailto:' +urlStr;
}

function formatMailurl(Str) {
    var Str;
    if (Str.indexOf("?") == -1) Str += "?";
    else Str += "&";
    return Str;
}
