/* ************************************************************* */
	function openAffiche(flag) {		
		if(flag) {
			var title1="left=30,top=30,screenx=0,screeny=0,location=no,menubar=no,resizable=no,scrollbars=no,titlebar=no,width=300,height=250";    
    			var name="Mydoc";
    			var NewWin=window.open("tz/index.htm", name, title1);
		}
	}
/* ************************************************************* */
	function sendSelect(id) {
		if(id != 0) {
			document.send1.domainid.value = id;			              
			document.send1.submit();			
		} else {
			return false;
		}
	}
/* ************************************************************* */	
	function openURL() {		
		var urls = document.sendurl.selecturl.options[document.sendurl.selecturl.selectedIndex].value;
		open(urls);
	}


function launchCenter(url, name, width, height, otheratt) {
  var str = "height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;
    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;
    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc+ ","+otheratt;
  }
  return window.open(url, name, str);
}