// JavaScript Document

function popUp(URL, w, h) {
	player = window.open(URL, 'photo', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + w + ",height=" + h + ",left = 50,top = 50');
	player.resizeTo(w, h);
	player.focus();
}

function popUpPhoto(URL, w, h) {
	w+=55;
	h+=70;
	photo = window.open(URL, 'photo', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + w + ",height=" + h + ",left = 50,top = 50');
	photo.resizeTo(w, h);
	photo.focus();
}
