function openNewWindow(addressQuery, height, width) {
	var windowString = 'height=' + height + ',width=' + width + ',screenX=0,screenY=0,left=200,top=100,status=no,scrollbars=yes,resizable=no';
	window.open(addressQuery,'popup',windowString);	
}

function openNewStaticWindow(addressQuery, height, width) {
	var windowString = 'height=' + height + ',width=' + width + ',screenX=0,screenY=0,left=200,top=100,status=no,scrollbars=no,resizable=no';
	window.open(addressQuery,'popup',windowString);	
}

function openNewStaticWindow2(addressQuery, height, width) {
	var windowString = 'height=' + height + ',width=' + width + ',screenX=0,screenY=0,left=200,top=100,status=no,scrollbars=no,resizable=no';
	window.open(addressQuery,'popup2',windowString);	
}
