/* this function spawns a new window to pop-up windows*/

function spawnWindow ( windowURL, windowWidth, windowHeight ) {

	var newWindow = open( windowURL, "", "width=" + windowWidth+ ",height=" + windowHeight + ",fullscreen=no,channelmode=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,replace=no" );

}
