function popup(filename) {
thewindow = window.open(filename,"popup","left=10,top=10,resizable=no, toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,");
thewindow.focus();
}

function resize (width,Height){
	window.resizeTo(width,Height);
	}
