function spawnWindow(where, what, props) {
	var newWin = open(where, what, props);
	newWin.focus();
}

function spawnPic(where) {
	spawnWindow(where, 'picWindow', 'width=650,height=650,scrollbars=yes,toolbar=no,menubar=no,resizable=yes,hotkeys=yes,locationbar=no');
}