function Show(fname) {

var chasm = screen.availWidth;
var mount = screen.availHeight;



  str = 'width=300, height=170,left=' + ((chasm - 300) *.5) + ',top=' + ((mount - 300) * .5) + ', menubar=no,status=no,titlebar=no,toolbar=no,location=no,resizable=no,scrollbars=no';

		PopupWin = window.open(fname, "newWin", str);
//		PopupWin = window.open(fname, "newWin", "width=300, height=120,left=400,top=500,menubar=no,status=no,titlebar=no,toolbar=no,location=no,resizable=no,scrollbars=no");
}
function reSize() {
window.outerHeight = 350;
//	newWidth = document.getElementById("me").width;
//	newHeight = document.getElementById("me").height;
}
