// JavaScript popup

var popup =null;


function open_pop(){

	if( popup == null || popup.closed ){
	
		popup=window.open('/modern/exhibitions/ubsphotography/flash/detect.htm', 'popupwin', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=220,height=290');
		popup.moveTo(50,50);
	}
	popup.focus();

}

function open_pop_slide(){

	if( popup == null || popup.closed ){
	
		popup=window.open('/modern/exhibitions/ubsphotography/flash/detect_slide.htm', 'popupwin', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=220,height=290');
		popup.moveTo(0,0);
	}
	popup.focus();

}



