function OpenWin(WinName,WinHeight,WinWidth) {
	Win = window.open(WinName + '.asp', 'OpenWin', 'height=' + WinHeight + ',width=' + WinWidth + ',top=100,left=100,menubar=no,location=no,directories=no,fullscreen=no,resizable=yes,scrollbars=yes,status=no,toolbar=no')
	Win.focus();	
}