// JavaScript Document
function openWnd(sPage, sName, nWidth, nHeight) {
	window.open(sPage, sName, "width=" + nWidth + ",height=" + nHeight + ", left=" + (screen.width - nWidth)/2 + ",top=" + (screen.height - nHeight)/2  + ",scrollbars = 1, resizable = 1,");
}
