// ipooz constants and javascript callbacks
var __constants = {
	version: "debug",
	serverPath: "http://www.ipooz.com/",
	allowSignIn: true,
	albumMaxCells: 1121,
	fileUploadSize: 1024000,
	adSenseLeaderboard: "['adsense_txt_leaderboard.html', 'adsense_img_leaderboard.html']",
	adSenseBanner: "['adsense_txt_banner.html', 'adsense_img_banner.html']"
};
var ipoozcontext = {
	'events': {
		'onEvent': function(val) {
			__hook.onEvent(val);
		},
		'onUpdatePhoto': function(val) {
			__hook.onUpdatePhoto(val);
		},
		'onGetImageSize': function(width, height) {
			__hook.onGetImageSize(width, height);
		}  					
	}
};
var __hook = new Hook("my hook");
//---------------------------------------------------------------------------------------------
function Hook( n ) {
	this.name = n;
}
//---------------------------------------------------------------------------------------------
function onLoad(){
}

