// JavaScript Document
function imageWindow(url) {
	cmdPic = window.open(url, 'imageWindow', 'width=600,height=450,toolbar=no,location=no,scrollbars=yes,resizable=yes');
	cmdPic.focus();
}

function imageGal(url) {
	cmdPic = window.open(url, 'imageGal', 'width=600,height=550,toolbar=no,location=no,scrollbars=yes,resizable=yes');
	cmdPic.focus();
}

function bigWindow(url) {
	cmdPic = window.open(url, 'imageGal', 'width=650,height=575,toolbar=no,location=no,scrollbars=yes,resizable=yes');
	cmdPic.focus();
}