/* page functions */

function send_mail(name, domain) {
	
	window.location = 'mailto:'+name+'@'+domain;	
}

function show_image(type, source, img) {
	
	if(screen.availWidth < 1000) {
		alert('Vaše rozlíšení monitoru je velmi malé na zobrazení detailu obrázku!\nObrázek nebude zobrazen celý!');
		maxWidth = 780;
		maxHeight = 580;
	}
	else {	
		maxWidth = 900;
		maxHeight = 660;
	} 
	
	xPos = (screen.availWidth / 2) - (maxWidth / 2);
	yPos = (screen.availHeight / 2) - (maxHeight / 2);
	
	window.open('/detail.php?type='+type+'&source='+source+'&img='+img,'detail_window','width='+maxWidth+',height='+maxHeight+',toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, copyhistory=no, resizable=no, left='+xPos+', top='+yPos+', screenX='+xPos+', screenY='+yPos);
}
