// JavaScript Document
function imageLoad (filename, caption) {
	var w = 510;
	var h = 400;
	var l = (screen.width / 2) - 200;
	var t = (screen.height / 2) - 200;
	var winprops = 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no,toolbar=no,resizable=no';
	win = window.open('/showcase/en/image/'+filename+'/'+caption,'', winprops);
}
function videoLoad (filename, caption) {
	var w = 510;
	var h = 430;
	var l = (screen.width / 2) - 200;
	var t = (screen.height / 2) - 200;
	var winprops = 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no,toolbar=no,resizable=no';
	win = window.open('/showcase/en/video/'+filename+'/'+caption,'', winprops);
}
function audioLoad (filename, caption) {
	var w = 510;
	var h = 400;
	var l = (screen.width / 2) - 200;
	var t = (screen.height / 2) - 200;
	var winprops = 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no,toolbar=no,resizable=no';
	win = window.open('/showcase/en/audio/'+filename+'/'+caption,'', winprops);
}
function flashLoad (filename, caption) {
	var w = 510;
	var h = 400;
	var l = (screen.width / 2) - 200;
	var t = (screen.height / 2) - 200;
	var winprops = 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no,toolbar=no,resizable=no';
	win = window.open('/showcase/en/flash/'+filename+'/'+caption,'', winprops);
}