function popAgree(u,opt) {
	window.open(u,"items",opt);
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function modalWin(xurl, w, h) {
	if (window.showModalDialog) {
		var digOp = 'dialogWidth:' + w + 'px;dialogHeight:' + h + 'px;help:no;status:no;';
		window.showModalDialog(xurl,self,digOp);
	} 
	else {
		var winOp = 'top=100,left=100;height=' + h + ',width=' + w + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,modal=yes'
		window.open(xurl,'DLG',winOp);
	}
} 