/* Exodus Library - Exodus Ventures 
   Photo functions - PhotoAlbum pages (Velero Specific)
   Copyright (c) Exodus Enterprise Systems
*/

var EA_cx, EA_cy;

function EA_center()	{ //v1.0
	var x,y,w,h;
	if (document.all) {
		x = window.screenLeft;
		y = window.screenTop;
		w = window.document.body.offsetWidth;
		h = window.document.body.offsetHeight;
  	} else {
		x = window.screenX;
		y = window.screenY;
		w = window.outerWidth;
		h = window.outerHeight;
  	}
	EA_cx = x + Math.round((w - 500) / 2);
	EA_cy = y + Math.round((h - 480) / 2);
}

function EA_roomZoom()	{ //v1.0
	var args=EA_roomZoom.arguments;
	if(args.length>0)	{
		var z=args[0];
		alert('Loading...' + z);
	}
}
