var newWin;

function openSized(pUrl, pWidth, pHeight){
	if(newWin != null && !newWin.closed) newWin.close();
	newWin = window.open(pUrl,"photo","width="+pWidth+",height="+pHeight+",location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no");
	if(newWin != null){
		if(newWin.focus) newWin.focus();
	}	
}

function initFull(){
	if(window.innerWidth){
		window.innerWidth = document.images[0].width;
		window.innerHeight = document.images[0].height;
	} else {
		window.resizeTo(document.images[0].width+24,document.images[0].height+32);
	}
}