function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function OpenWindow(uri, width, height, name){
	window.open(uri,name,'width='+width+',height='+height+',status=no,menubar=no,resizable=no,scrollbars=yes')
	return false;
}

