function CreateWindow(fileName,theWidth,theHeight) {
	windowName = new String(Math.round(Math.random() * 100000));
	msgWindow=window.open(fileName,windowName,"toolbar=no,width="+theWidth+",height="+theHeight+",directories=no,status=no,scrollbars=no,resizable=no,menubar=no");
}
