 window.name = "CTB";

function openWindow(myPage) {
  myPage = myPage.replace(/ /, "+");
  //alert(myPage); 
    
  var height = 400;
  var width = 650;
  var top = (screen.height / 2) - (height / 2) - 100;
  var left = (screen.width / 2) - (width / 2);      
  var features = "scrollbars,resizable,Height=" + height + ",Width=" + width + ",top=" + top + ",left=" + left;
  
	if (window.OpenWindow && window.OpenWindow.closed == false) {
		window.OpenWindow.focus();
	}
  OpenWindow = window.open(myPage,"Lookup",features,false);
	
}

function openMessageWindow(myPage) {
  myPage = myPage.replace(/ /, "+");
  //alert(myPage); 
    
  var height = 550;
  var width = 500;
  //var top = (screen.height / 3) - (height / 3) - 100;
  //var left = (screen.width / 3) - (width / 3);      
  var top= 100;
  var left=500;
  var features = "scrollbars,resizable,Height=" + height + ",Width=" + width + ",top=" + top + ",left=" + left;
  
	if (window.OpenWindow && window.OpenWindow.closed == false) {
		window.OpenWindow.focus();
	}
  OpenWindow = window.open(myPage,"Message",features,false);
	
}

function openReplyWindow(myPage) {
  myPage = myPage.replace(/ /, "+");
  //alert(myPage); 
    
  var height = 675;
  var width = 650;
  
  //var top = (screen.height / 2) - (height / 2) - 100;
  //var left = (screen.width / 2) - (width / 2);      
  
  var top= 15;
  var left=10;
  
  
  var features = "scrollbars,resizable,Height=" + height + ",Width=" + width + ",top=" + top + ",left=" + left;
  
	if (window.OpenWindow && window.OpenWindow.closed == false) {
		window.OpenWindow.focus();
	}
  OpenWindow = window.open(myPage,"Reply",features,false);
	
}

function onLoadMessage(){
window.name="Message";
}

function onLoadReply(){
window.name="Reply";
}
