﻿function poppo(url) {
	pop=window.open(url,"Edit","location=0,menubar=0,scrollbars=0,status=0,titlebar=0,toolbar=0,resizable=1,height=300,width=600");
	pop.moveTo(80,80);
}
function poppic(url) {
	var h=620;
	var w=620;
	var x=(screen.width-w)/2;
	var y=(screen.height-h)/2;
	document.getElementById("contain").style.MozOpacity=".2";
	document.getElementById("contain").style.filter="alpha(opacity='20')";
	pop=window.open(url,"Photo","location=0,menubar=0,scrollbars=0,status=0,titlebar=0,toolbar=0,resizable=1,top="+y+",left="+x+",height=620,width=620");
	pop.moveTo(x,y);
}
function opacshift(){
	document.getElementById("contain").style.MozOpacity="1.0";
	document.getElementById("contain").style.filter="alpha(opacity='100')";
}
function shutdown(){
	window.close;
}
