/* this function spawns a new window of a predetermined size*/

function spawnWindow ( picURL, picWidth, picHeight ) {
	var newWindow = open( picURL, "", "width=" + picWidth + ",height=" + picHeight + ",fullscreen=no,channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,replace=no" );
}

/* this function spawns a new window */

function spawnBrowser ( picURL ) {
	var newWindow = open( picURL );
}
