function noBot(start,finish){

	var strAdress = "mailto:" + start + "@" + finish;
	window.location = strAdress;
	
}

function openWindow(url,name,width,height,center,addParams){
	
	var params = "width=" + width + ",height=" + height + ",";
	
	if(center){
		params += "left=" + ((screen.width/2)-(width/2)) + ",top=" + ((screen.height/2)-(height/2));
	}
	
	params += addParams;
	window.open(url,name,params);
	
}