function email_thinger(subject, ext, domain, name){
	email_address = name+"@"+domain+"."+ext;
	mailto_link = "<a href=\"mailto:"+email_address+"?subject="+subject+"\">"+email_address+"</a>";
	document.write(mailto_link);
}

function swap_photo(filename,title,type,size,price,painting_id){
	photo = document.getElementById('large_photo');
	photo.src = "images/paintings/"+filename;
	
	document.getElementById('photo_info').innerHTML = "<div class=\"title\">"+title+"</div>"+type+" - "+size+" - $"+price+"<br/><span class=\"id\">"+painting_id+"</span>";

	
}

function show_form(form){
	document.getElementById(form).style.display = 'block';
	//document.getElementById(form+"_link").style.display = 'none';
}
