function openwindow(strURL,strtitle) {
var features = 'width=800'     +
		',height=600'    +
		',top=0' +
		',left=0'    +
		',directories=0' +
		',location=0'    +
		',menubar=0'     +
		',scrollbars=1'  +
		',status=0'      +
		',toolbar=0'     +
		',resizable=0;';

window.open(strURL, strtitle, features);
			}

