/**
 * ui.js -> http://actOral.org/
 * actOral.7 user interaction
 * (cc) creative commons by 3.0
 */
 
 
 
 
function popup( elem ) {
	
	// images
	if ( elem.src!=null ) {
		window.open(
			"/php/popup.php?src="+elem.src+"&alt="+elem.alt,
			'puwin',
			'toolbar=0,location=0,directories=0,resizable=0,menubar=0,status=0,scrollbars=0'
		);
	}
	// map
	else {
		
		var w = 640;
		var h = 480;
		var l = ( screen.availWidth-w )/2;
		var t =	100;

		window.open(
			"/php/popup.php?"+elem,
			'puwin',
			'toolbar=0,location=0,directories=0,resizable=0,menubar=0,status=0,scrollbars=0,'+
			'left='+l+',top='+t+',width='+w+',height='+h
		);
	}
}
