// JavaScript Document

function ShowWindow(strUrl,nWidth,nHeight){
	nPosX = (screen.availWidth - nWidth) / 2;
	nPosY = (screen.availHeight - nHeight) / 2;
	window.open(strUrl,'_blank','height=' + nHeight + ',width=' + nWidth + ',titlebar=no,status=no,toolbar=no,menubar=no,location=no,resizable=no,left=' + nPosX + ',top=' + nPosY + '');
}
