function NewWindow(strUrl){
	vRes = screen.width
	if (vRes==1024) {
		aWin =
window.open(strUrl,'','scrollbars=yes,resizable=no,width=900,height=700,top=25,left=60');
	}
	else
	if (vRes==800) {
		aWin =
window.open(strUrl,'','scrollbars=yes,resizable=no,width=700,height=600,top=25,left=50');
	}
	else
	if (vRes==1280) {
		aWin =
window.open(strUrl,'','scrollbars=yes,resizable=no,width=1000,height=800,top=50,left=140');
	}
	else
	aWin =
window.open(strUrl,'','scrollbars=yes,resizable=no,width=600,height=500,top=25,left=30');
}

