function pageInit(){
	a = document.getElementById('extra_size');
	rpc = new remoteCall();
	//rpc.pageExist(a.href)
	if (1 == 1) {
		a.title = 'Увеличить';
		a.onclick = zoom;
	}	
	else {
		a.onclick = new Function("return false;");
		a.href = '#';
	}
}
function zoom(){
	window.moveTo(0, 0);
	window.resizeTo(screen.width, screen.height);
	this.getElementsByTagName('img').item(0).src = this.href;
	this.title = 'Закрыть';
	this.onclick = new Function("window.close()");
	return false;
}

window.onload = pageInit;
