function MM_openBrWindow(theURL,winName,features) { //v2.0
	if( features != '' ) {
		features += ',';
	}
	features += 'width=' + screen.availWidth + ',height=' + screen.availHeight;
	features += ',top=0,left=0,location=no,menubar=no,toolbar=no';
	features += ',scrollbars=yes.status=no,titlebar=yes,directories=no,resizable=yes';
	window.open(theURL,winName,features);
}

function window_open(theURL, w, h) {
	if( w == '' || w == 0 ) {
		w = screen.availWidth;
	}
	if( h == '' || h == 0 ) {
		h = screen.availHeight;
	}
	var features = '';
	features += 'width=' + w + ',height=' + h;
	features += ',top=0,left=0,location=no,menubar=no,toolbar=no';
	features += ',scrollbars=yes,status=no,titlebar=yes,directories=no,resizable=yes';
	window.open(theURL,'',features);
}

