Closed Bug 264318 Opened 20 years ago Closed 20 years ago

The page is not rendered with the menus unlike IE 6

Categories

(Firefox :: General, defect)

x86
Windows XP
defect
Not set
major

Tracking

()

RESOLVED INVALID

People

(Reporter: htheoharis, Assigned: bugzilla)

Details

Attachments

(2 files)

User-Agent:       Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1

This page when rendered with IE has menus.  If you see it in Firefox everything
else renders correctly except for the menus that are missing.

Reproducible: Always
Steps to Reproduce:
1.See the page in IE&
2.See the page in Firefox PR1
3.Compare the differences

Actual Results:  
No menus were seen when looking the page with firefox.

Expected Results:  
Menus should be present.

Since I cannot attach the page and it is not on the internet I am posting the
source code.  Copy and paste it into an html file and you should reproduce the page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><!-- LANSA for the Web e-Business Framework 10.0 --><!--	Layout
Scheme #4			     -->
<meta http-equiv="Content-Type" content="text/html;
charset=ISO-8859-1"><title>ΑΝΑΖΗΤΗΣΕΙΣ ΠΑΡΑΓΩΓΗΣ</title><!-- WEB_INFORM_STYLE
Style sheet -->


<style type="text/css">
<!--
.rightmenu
{
font-weight: bold; color:#FFFFFF; text-decoration: none;
}

.selrightmenu
{
font-weight: bold; color:#000000; text-decoration: none;
}

.leftmenu
{
font-weight: bold; color:#FFFFFF; text-decoration: none;
}

.selleftmenu
{
font-weight: bold; color:#000000; text-decoration: none;
}

.hrzmenu
{
font-weight: bold; color:#FFFFFF; text-decoration: none;
}

.selhrzmenu
{
font-weight: bold; color:#000000; text-decoration: none;
}

table
{
 width:760px; font-family: Verdana, Tahoma, Arial; font-style: regular;
font-size: 10pt; color: 000000; font-weight: 400; text-decoration: none;
}

option
{
 font-family: Verdana, Tahoma, Arial; font-size: 8pt; color: #0066CC;
font-weight: 500; background-color: #FFFF99;
}

input
{
 font-family: Verdana, Tahoma, Arial; font-size: 8pt; color: #000066;
font-weight: 500; background-color: #CCCCFF;
}

h1
{
 font-family: Verdana, Tahoma, Arial; font-style: bold; font-size: 16pt; color:
#4B4B4B; font-weight: 400; text-decoration: none;
}

.submit
{
 font-family: Verdana, Tahoma, Arial; font-size: 8pt; color: #000066;
font-weight: 500; background-color: #CCCCFF
}

-->
</style><!--                                         --><!--     LANSA for the
Web                   --><!--     Default Scripts                     --><!--  
  Last Modified: 10.0  2002-04-15     -->





<script type="text/javascript" language="javascript">
//<![CDATA[


function SetSelect(HTMLName, Name,Row,Column,Select)
{
   document.LANSA._SELECT.value=Select;
   SetNameLocation(Name,Row,Column);
   document.LANSA._CALFLD.value=HTMLName;
}
function SetNameLocation(Name,Row,Column)
{
   document.LANSA._NAME.value=Name;
   document.LANSA._ROW.value=Row;
   document.LANSA._COLUMN.value=Column;
   document.LANSA._CALFLD.value=Name;
}

function HandleEvent(Proc,Func)
{


   document.LANSA._PROCESS.value=Proc;
   document.LANSA._FUNCTION.value=Func;
   document.LANSA.submit();
}


function SetFocus()
{
   var NumElements=document.LANSA.elements.length;

   for (i=0; i<NumElements;i++)
   {
      if (document.LANSA.elements[i].type=="checkbox" ||
          document.LANSA.elements[i].type=="password" ||
          document.LANSA.elements[i].type=="radio" ||
          document.LANSA.elements[i].type=="text" ||
          document.LANSA.elements[i].type=="textarea")
      {
         if (document.LANSA.elements[i].value!="")
            document.LANSA.elements[i].select();
         document.LANSA.elements[i].focus();
         break;
      }
   }
}
function preload(imgObj,imgSrc)
{
   if (document.images)
   {
      eval(imgObj+' = new Image()');
      eval(imgObj+'.src = "'+imgSrc+'"');
   }
}
function changeImage(layer,imgObj, imgName)
{
   if (document.images)
   {
      if (document.layers && layer!=null)
         eval('document.'+layer+'.document.images["'+imgName+'"].src =
'+imgObj+'.src');
      else
         document.images[imgName].src = eval(imgObj+".src");
   }
}
function CheckNUpdate(Fld, Value)
{
   var NumElements=document.LANSA.elements.length;

   for (i=0; i<NumElements;i++)
   {
      if (document.LANSA.elements[i].name==Fld)
      {
         document.LANSA.elements[i].value=Value;
         break;
      }
   }
}
function FieldExists(Fld)
{
   var NumElements=document.LANSA.elements.length;

   for (i=0; i<NumElements;i++)
   {
      if (document.LANSA.elements[i].name==Fld)
         return true;
   }
  return false;
}
function SetState(obj, RFld, chkValue, unchkValue)
{
  var NumElements=document.LANSA.elements.length;

  for (i=0; i<NumElements;i++)
  {
    if (document.LANSA.elements[i].name==RFld)
    {
      if (obj.checked)
         document.LANSA.elements[i].value=chkValue;
      else
         document.LANSA.elements[i].value=unchkValue;
      break;
    }
  }
}
function GetFieldValue(RFld)
{
  var NumElements=document.LANSA.elements.length;

  for (i=0; i<NumElements;i++)
  {
    if (document.LANSA.elements[i].name==RFld)
         return document.LANSA.elements[i].value;
  }
  return null;
}
function CallLink(Process, Function, Partition, NewWindow)
{
  var URL="/CGI-BIN/LANSAWEB?PROCFUN+";

  URL+=Process;
  URL+="+";
  URL+=Function;
  URL+="+";
  URL+=Partition;	



  if (FieldExists('ASTDTABFLR'))
  {
      URL+="+FUNCPARMS+STDTABFLR(A004):";
      URL+=document.LANSA.ASTDTABFLR.value;
  }

   if (NewWindow == 'N')
      window.location=URL;
   else
       StartFunction(URL);
}

function SetCBState(obj, RFld, CY, CN)
{
   var NumElements=document.LANSA.elements.length;

   for (i=0; i<NumElements;i++)
   {
      if (document.LANSA.elements[i].name==RFld)
      {
         if (obj.checked)
            document.LANSA.elements[i].value=CY;
         else
            document.LANSA.elements[i].value=CN;
         break;
      }
   }
}
function StartFunction(URL)
{
  var win;
  win=window.open("","TESTFNC");
  if (win != null)
    win.location=URL;
  win.focus();
}
function ECSelect(proc,fun,ECparm)
{
  document.LANSA.action += '+FUNCPARMS+ECPARM(A0500):' + ECparm;
  HandleEvent(proc, fun);
}
//]]>
</script>
<script type="text/javascript" language="JavaScript">
//<![CDATA[
function trapError()
{
return true;
}
window.onerror=trapError;
//!!>
</script></head>




<body leftmargin="0" topmargin="0"
background="LANSAWEB_%E1%F1%F7%E5%DF%E1/backmain.jpg" bgcolor="#ffffff"
marginheight="0" marginwidth="0">
<script type="text/javascript">function Go(){return}</script>

<!-- HORIZONTAL  DHTML Menu 10.0 -->
 <script type="text/javascript" language="JavaScript">
//<![CDATA[
var WizFirstLineHorizontal=1;
var WizNoOffFirstLineMenus=3;
var WizLowBgColor='#CCCCFF';
var WizLowSubBgColor='#CCCCFF';
var WizHighBgColor='#8888FF';
var WizHighSubBgColor='#8888FF';
var WizFontLowColor='black';
var WizFontSubLowColor='black';
var WizFontHighColor='white';
var WizFontSubHighColor='white';
var WizBorderColor='black';
var WizBorderSubColor='black';
var WizBorderWidth=1;
var WizBorderBtwnElmnts=1;
var WizFontFamily="Verdana,Tahoma,Arial";
var WizFontSize=8;
var WizFontBold=0;
var WizFontItalic=0;
var WizMenuTextCentered='left';
var WizMenuCentered='left';
var WizMenuVerticalCentered='top';
var WizChildOverlap=0;
var WizChildVerticalOverlap=0;
var WizStartTop=0;
var WizStartLeft=0;
var WizLeftPaddng=3;
var WizTopPaddng=2;
var WizDisappearDelay=1000;
var WizTargetLoc='MenuPos';
var WizMenuWrap=1;
var WizRightToLeft=0;
var WizUnfoldsOnClick=0;
var WizWebMasterCheck=0;
var WizShowArrow=1;
var WizKeepHilite=1;
var
WizArrws=['/images/wiztri.gif',5,10,'/images/wiztridown.gif',10,5,'/images/wiztrileft.gif',5,10];
var WizVerCorrect=0;
var WizHorCorrect=0;
var WizMenuFramesVertical=1;
var WizTakeOverBgColor=1;
var WizFirstLineFrame='navig';
var WizSecLineFrame='space';
var WizDocTargetFrame='space';
var WizHideTop=0;

function WizBeforeStart(){return}
function WizAfterBuild(){return}
function WizBeforeFirstOpen(){return}
function WizAfterCloseAll(){return}

Menu1=new Array("Αρχική
Σελίδα","javascript:HandleEvent('WEB_INFORM','WEBINF1')","",0,15,150);
Menu2=new Array("Συμβόλαια","/images/wizblank.htm","",5,15,150);
Menu2_1=new Array("Με αριθμό
συμβολαίου","javascript:HandleEvent('WEB_INFORM','WEBINF2')","",0,15,150);
Menu2_2=new Array("Με αριθμό
αίτησης","javascript:HandleEvent('WEB_INFORM','WEBINF3')","",0,15,150);
Menu2_3=new Array("Με αριθμό
κυκλοφορίας","javascript:HandleEvent('CAR_INFORM','CRPOL04')","",0,15,150);
Menu2_4=new Array("Με διεύθυνση
κινδύνου","javascript:HandleEvent('GEN_INFORM','GNPOL70')","",0,15,150);
Menu2_5=new Array("Με επώνυμο
πελάτη","javascript:HandleEvent('WEB_INFORM','WEBINF4')","",0,15,150);
Menu3=new Array("Πελάτες","/images/wizblank.htm","",1,15,150);
Menu3_1=new Array("Με επώνυμο
πελάτη","javascript:HandleEvent('PEL_INFORM','PELINF1')","",0,15,150);
//]]>
</script>
<script type="text/javascript" language="JavaScript">
//<![CDATA[
	var AgntUsr=navigator.userAgent.toLowerCase();
	var DomYes=document.getElementById?1:0;
	var NavYes=AgntUsr.indexOf('mozilla')!=-1&&AgntUsr.indexOf('compatible')==-1?1:0;
	var ExpYes=AgntUsr.indexOf('msie')!=-1?1:0;
	var Opr=AgntUsr.indexOf('opera')!=-1?1:0;
	var DomNav=DomYes&&NavYes?1:0;
 	var DomExp=DomYes&&ExpYes?1:0;
	var Nav4=NavYes&&!DomYes&&document.layers?1:0;
	var Exp4=ExpYes&&!DomYes&&document.all?1:0;
	var PosStrt=(NavYes||ExpYes)&&!Opr?1:0;

	var FrstLoc,ScLoc,DcLoc;
	var ScWinWdth,ScWinHght,FrstWinWdth,FrstWinHght;
	var ScLdAgainWin;
	var FirstColPos,SecColPos,DocColPos;
	var RcrsLvl=0;
	var FrstCreat=1,Loadd=0,Creatd=0,IniFlg,AcrssFrms=1;
	var FrstCntnr=null,CurrntOvr=null,CloseTmr=null;
	var CntrTxt,TxtClose,ImgStr;
	var Ztop=100;
	var ShwFlg=0;
	var M_StrtTp=WizStartTop;
	var M_StrtLft=WizStartLeft;
	var StaticPos=0;
	var LftXtra=DomNav?WizLeftPaddng:0;
	var TpXtra=DomNav?WizTopPaddng:0;
	var M_Hide=Nav4?'hide':'hidden';
	var M_Show=Nav4?'show':'visible';
	var Par=parent.frames[0]&&WizFirstLineFrame!=WizSecLineFrame?parent:window;
	var Doc=Par.document;
	var Bod=Doc.body;
	var Trigger=NavYes?Par:Bod;

	WizMenuTextCentered=WizMenuTextCentered==1||WizMenuTextCentered=='center'?'center':WizMenuTextCentered==0||WizMenuTextCentered!='right'?'left':'right';
	WbMstrAlrts=["Item not defined: ","Item needs height: ","Item needs width: "];

	if(Trigger.onload)Dummy=Trigger.onload;
	if(DomNav&&!Opr)Trigger.addEventListener('load',Go,false);
	else Trigger.onload=Go;

function Dummy(){return}

function CnclSlct(){return false}

function RePos(){
	FrstWinWdth=ExpYes?FrstLoc.document.body.clientWidth:FrstLoc.innerWidth;
	FrstWinHght=ExpYes?FrstLoc.document.body.clientHeight:FrstLoc.innerHeight;
	ScWinWdth=ExpYes?ScLoc.document.body.clientWidth:ScLoc.innerWidth;
	ScWinHght=ExpYes?ScLoc.document.body.clientHeight:ScLoc.innerHeight;
	if(WizMenuCentered=='justify'&&WizFirstLineHorizontal){
		FrstCntnr.style.width=FrstWinWdth;
		ClcJus();
		var P=FrstCntnr.FrstMbr,W=Menu1[5],i;
		for(i=0;i<WizNoOffFirstLineMenus;i++){P.style.width=W;P=P.PrvMbr}}
	StaticPos=-1;
	if(WizTargetLoc)ClcTrgt();
	if(WizMenuCentered)ClcLft();
	if(WizMenuVerticalCentered)ClcTp();
	PosMenu(FrstCntnr,WizStartTop,WizStartLeft)}

function UnLoaded(){
	if(CloseTmr)clearTimeout(CloseTmr);
	Loadd=0; Creatd=0;
	if(WizHideTop){
		var FCStyle=Nav4?FrstCntnr:FrstCntnr.style;
		FCStyle.visibility=M_Hide}}

function ReDoWhole(){
	if(ScWinWdth!=ScLoc.innerWidth||ScWinHght!=ScLoc.innerHeight||FrstWinWdth!=FrstLoc.innerWidth||FrstWinHght!=FrstLoc.innerHeight)Doc.location.reload()}

function Check(WMnu,NoOf){
	var i,array,ArrayLoc;
	ArrayLoc=parent.frames[0]?parent.frames[WizFirstLineFrame]:self;
	for(i=0;i<NoOf;i++){
		array=WMnu+eval(i+1);
		if(!ArrayLoc[array]){WbMstrAlrt(0,array); return false}
		if(i==0){	if(!ArrayLoc[array][4]){WbMstrAlrt(1,array); return false}
			if(!ArrayLoc[array][5]){WbMstrAlrt(2,array); return false}}
		if(ArrayLoc[array][3])if(!Check(array+'_',ArrayLoc[array][3])) return false}
	return true}

function WbMstrAlrt(No,Xtra){
	return confirm(WbMstrAlrts[No]+Xtra+'   ')}

function Go(){
	Dummy();
	if(Loadd||!PosStrt)return;
	WizBeforeStart();
	Creatd=0; Loadd=1;
	status='Building menu';
	if(FrstCreat){
		if(WizFirstLineFrame =="" || !parent.frames[WizFirstLineFrame]){
			WizFirstLineFrame=WizSecLineFrame;
			if(WizFirstLineFrame =="" || !parent.frames[WizFirstLineFrame]){
				WizFirstLineFrame=WizSecLineFrame=WizDocTargetFrame;
				if(WizFirstLineFrame =="" ||
!parent.frames[WizFirstLineFrame])WizFirstLineFrame=WizSecLineFrame=WizDocTargetFrame=''}}
		if(WizSecLineFrame =="" || !parent.frames[WizSecLineFrame]){
			WizSecLineFrame=WizDocTargetFrame;
			if(WizSecLineFrame =="" ||
!parent.frames[WizSecLineFrame])WizSecLineFrame=WizDocTargetFrame=WizFirstLineFrame}
		if(WizDocTargetFrame =="" ||
!parent.frames[WizDocTargetFrame])WizDocTargetFrame=WizSecLineFrame;
		if(WizWebMasterCheck){	if(!Check('Menu',WizNoOffFirstLineMenus)){status='build
aborted';return}}
		FrstLoc=WizFirstLineFrame!=""?parent.frames[WizFirstLineFrame]:window;
		ScLoc=WizSecLineFrame!=""?parent.frames[WizSecLineFrame]:window;
		DcLoc=WizDocTargetFrame!=""?parent.frames[WizDocTargetFrame]:window;
		if (FrstLoc==ScLoc) AcrssFrms=0;
		if (AcrssFrms)WizFirstLineHorizontal=WizMenuFramesVertical?0:1;
		FrstWinWdth=ExpYes?FrstLoc.document.body.clientWidth:FrstLoc.innerWidth;
		FrstWinHght=ExpYes?FrstLoc.document.body.clientHeight:FrstLoc.innerHeight;
		ScWinWdth=ExpYes?ScLoc.document.body.clientWidth:ScLoc.innerWidth;
		ScWinHght=ExpYes?ScLoc.document.body.clientHeight:ScLoc.innerHeight;
		if(Nav4){	CntrTxt=WizMenuTextCentered!='left'?"<div
align='"+WizMenuTextCentered+"'>":"";
			TxtClose="</font>"+WizMenuTextCentered!='left'?"</div>":""}}
	FirstColPos=Nav4?FrstLoc.document:FrstLoc.document.body;
	SecColPos=Nav4?ScLoc.document:ScLoc.document.body;
	DocColPos=Nav4?DcLoc.document:ScLoc.document.body;
	if
(WizTakeOverBgColor)FirstColPos.bgColor=AcrssFrms?SecColPos.bgColor:DocColPos.bgColor;
	if(WizMenuCentered=='justify'&&WizFirstLineHorizontal)ClcJus();
	if(FrstCreat){
		FrstCntnr=CreateMenuStructure('Menu',WizNoOffFirstLineMenus);
		FrstCreat=AcrssFrms?0:1}
	else CreateMenuStructureAgain('Menu',WizNoOffFirstLineMenus);
	if(WizTargetLoc)ClcTrgt();
	if(WizMenuCentered)ClcLft();
	if(WizMenuVerticalCentered)ClcTp();
	PosMenu(FrstCntnr,WizStartTop,WizStartLeft);
	IniFlg=1;
	Initiate();
	Creatd=1;
	ScLdAgainWin=ExpYes?ScLoc.document.body:ScLoc;
	ScLdAgainWin.onunload=UnLoaded;
	Trigger.onresize=Nav4?ReDoWhole:RePos;
	WizAfterBuild();
	if(WizMenuVerticalCentered=='static'&&!AcrssFrms)setInterval('KeepPos()',250);
	status='Menu ready for use'}

function KeepPos(){
	var TS=ExpYes?FrstLoc.document.body.scrollTop:FrstLoc.pageYOffset;
	if(TS!=StaticPos){
		var FCStyle=Nav4?FrstCntnr:FrstCntnr.style;
		FCStyle.top=FrstCntnr.OrgTop=WizStartTop+TS;StaticPos=TS}}

function ClcJus(){
	var a=WizBorderBtwnElmnts?1:2,b=WizBorderBtwnElmnts?WizBorderWidth:0;
	var Size=Math.round(((FrstWinWdth-a*WizBorderWidth)/WizNoOffFirstLineMenus)-b),i,j;
	for(i=1;i<WizNoOffFirstLineMenus+1;i++){j=eval('Menu'+i);j[5]=Size}
	WizStartLeft=0}

function ClcTrgt(){
	var
TLoc=Nav4?FrstLoc.document.layers[WizTargetLoc]:DomYes?FrstLoc.document.getElementById(WizTargetLoc):FrstLoc.document.all[WizTargetLoc];
	WizStartTop=M_StrtTp;
	WizStartLeft=M_StrtLft;
	if(DomYes){
	
while(TLoc){WizStartTop+=TLoc.offsetTop;WizStartLeft+=TLoc.offsetLeft;TLoc=TLoc.offsetParent}}
	else{
WizStartTop+=Nav4?TLoc.pageY:TLoc.offsetTop;WizStartLeft+=Nav4?TLoc.pageX:TLoc.offsetLeft}}

function ClcLft(){
	if(WizMenuCentered!='left'&&WizMenuCentered!='justify'){
		var Size=FrstWinWdth-(!Nav4?parseInt(FrstCntnr.style.width):FrstCntnr.clip.width);
		WizStartLeft=M_StrtLft;
		WizStartLeft+=WizMenuCentered=='right'?Size:Size/2}}

function ClcTp(){
	if(WizMenuVerticalCentered!='top'&&WizMenuVerticalCentered!='static'){
		var
Size=FrstWinHght-(!Nav4?parseInt(FrstCntnr.style.height):FrstCntnr.clip.height);
		WizStartTop=M_StrtTp;
		WizStartTop+=WizMenuVerticalCentered=='bottom'?Size:Size/2}}

function PosMenu(CntnrPntr,Tp,Lt){
	var Topi,Lefti,Hori;
	var Cntnr=CntnrPntr;
	var Mmbr=Cntnr.FrstMbr;
	var CntnrStyle=!Nav4?Cntnr.style:Cntnr;
	var MmbrStyle=!Nav4?Mmbr.style:Mmbr;
	var PadL=Mmbr.value.indexOf('<')==-1?LftXtra:0;
	var PadT=Mmbr.value.indexOf('<')==-1?TpXtra:0;
	var MmbrWt=!Nav4?parseInt(MmbrStyle.width)+PadL:MmbrStyle.clip.width;
	var MmbrHt=!Nav4?parseInt(MmbrStyle.height)+PadT:MmbrStyle.clip.height;
	var CntnrWt=!Nav4?parseInt(CntnrStyle.width):CntnrStyle.clip.width;
	var CntnrHt=!Nav4?parseInt(CntnrStyle.height):CntnrStyle.clip.height;
	var SubTp,SubLt;
	RcrsLvl++;
	if (RcrsLvl==1 &&
AcrssFrms)!WizMenuFramesVertical?Tp=FrstWinHght-CntnrHt+(Nav4?4:0):Lt=WizRightToLeft?0:FrstWinWdth-CntnrWt+(Nav4?4:0);
	if (RcrsLvl==2 &&
AcrssFrms)!WizMenuFramesVertical?Tp=0:Lt=WizRightToLeft?ScWinWdth-CntnrWt:0;
	if (RcrsLvl==2 && AcrssFrms){Tp+=WizVerCorrect;Lt+=WizHorCorrect}
	CntnrStyle.top=RcrsLvl==1?Tp:0;
	Cntnr.OrgTop=Tp;
	CntnrStyle.left=RcrsLvl==1?Lt:0;
	Cntnr.OrgLeft=Lt;
	if (RcrsLvl==1 && WizFirstLineHorizontal){
		Hori=1;Lefti=CntnrWt-MmbrWt-2*WizBorderWidth;Topi=0}
	else{	Hori=Lefti=0;Topi=CntnrHt-MmbrHt-2*WizBorderWidth}
	while(Mmbr!=null){
		MmbrStyle.left=Lefti+WizBorderWidth;
		MmbrStyle.top=Topi+WizBorderWidth;
		if(Nav4)Mmbr.CmdLyr.moveTo(Lefti+WizBorderWidth,Topi+WizBorderWidth);
		if(Mmbr.ChildCntnr){
		
if(WizRightToLeft)ChldCntnrWdth=Nav4?Mmbr.ChildCntnr.clip.width:parseInt(Mmbr.ChildCntnr.style.width);
			if(Hori){	SubTp=Topi+MmbrHt+2*WizBorderWidth;
				SubLt=WizRightToLeft?Lefti+MmbrWt-ChldCntnrWdth:Lefti}
			else{
SubLt=WizRightToLeft?Lefti-ChldCntnrWdth+WizChildOverlap*MmbrWt+WizBorderWidth:Lefti+(1-WizChildOverlap)*MmbrWt+WizBorderWidth;
				SubTp=RcrsLvl==1&&AcrssFrms?Topi:Topi+WizChildVerticalOverlap*MmbrHt}
			PosMenu(Mmbr.ChildCntnr,SubTp,SubLt)}
		Mmbr=Mmbr.PrvMbr;
		if(Mmbr){	MmbrStyle=!Nav4?Mmbr.style:Mmbr;
			PadL=Mmbr.value.indexOf('<')==-1?LftXtra:0;
			PadT=Mmbr.value.indexOf('<')==-1?TpXtra:0;
			MmbrWt=!Nav4?parseInt(MmbrStyle.width)+PadL:MmbrStyle.clip.width;
			MmbrHt=!Nav4?parseInt(MmbrStyle.height)+PadT:MmbrStyle.clip.height;
		
Hori?Lefti-=WizBorderBtwnElmnts?(MmbrWt+WizBorderWidth):(MmbrWt):Topi-=WizBorderBtwnElmnts?(MmbrHt+WizBorderWidth):(MmbrHt)}}
	RcrsLvl--}

function Initiate(){
	if(IniFlg){	Init(FrstCntnr);IniFlg=0;
		if(ShwFlg)WizAfterCloseAll();ShwFlg=0}}

function Init(CntnrPntr){
	var Mmbr=CntnrPntr.FrstMbr;
	var MCStyle=Nav4?CntnrPntr:CntnrPntr.style;
	RcrsLvl++;
	MCStyle.visibility=RcrsLvl==1?M_Show:M_Hide;
	while(Mmbr!=null){
		if(Mmbr.Hilite){Mmbr.Hilite=0;if(WizKeepHilite)LowItem(Mmbr)}
		if(Mmbr.ChildCntnr) Init(Mmbr.ChildCntnr);
		Mmbr=Mmbr.PrvMbr}
	RcrsLvl--}

function ClearAllChilds(Pntr){
	var CPCCStyle;
	while (Pntr){
		if(Pntr.Hilite){
			Pntr.Hilite=0;
			if(WizKeepHilite)LowItem(Pntr);
			if(Pntr.ChildCntnr){
				CPCCStyle=Nav4?Pntr.ChildCntnr:Pntr.ChildCntnr.style;
				CPCCStyle.visibility=M_Hide;
				ClearAllChilds(Pntr.ChildCntnr.FrstMbr)}
			break}
		Pntr=Pntr.PrvMbr}}

function GoTo(){
	if(this.LinkTxt){
		status='';
		var HP=Nav4?this.LowLyr:this;
		LowItem(HP);
	
this.LinkTxt.indexOf('javascript:')!=-1?eval(this.LinkTxt):DcLoc.location.href=this.LinkTxt}}

function HiliteItem(P){
	if(Nav4){
		if(P.ro)P.document.images[P.rid].src=P.ri2;
		else{	if(P.HiBck)P.bgColor=P.HiBck;
			if(P.value.indexOf('<img')==-1){
				P.document.write(P.Ovalue);
				P.document.close()}}}
	else{	if(P.ro){	var Lc=P.Level==1?FrstLoc:ScLoc;
			Lc.document.images[P.rid].src=P.ri2}
		else{	if(P.HiBck)P.style.backgroundColor=P.HiBck;
			if(P.HiFntClr)P.style.color=P.HiFntClr}}
	P.Hilite=1}

function LowItem(P){
	if(P.ro){	if(Nav4)P.document.images[P.rid].src=P.ri1;
		else{	var Lc=P.Level==1?FrstLoc:ScLoc;
			Lc.document.images[P.rid].src=P.ri1}}
	else{	if(Nav4){	if(P.LoBck)P.bgColor=P.LoBck;
			if(P.value.indexOf('<img')==-1){
				P.document.write(P.value);
				P.document.close()}}
		else{	if(P.LoBck)P.style.backgroundColor=P.LoBck;
			if(P.LwFntClr)P.style.color=P.LwFntClr}}}

function OpenMenu(){	
	if(!Loadd||!Creatd) return;
	var TpScrlld=ExpYes?ScLoc.document.body.scrollTop:ScLoc.pageYOffset;
	var LScrlld=ExpYes?ScLoc.document.body.scrollLeft:ScLoc.pageXOffset;
	var CCnt=Nav4?this.LowLyr.ChildCntnr:this.ChildCntnr;
	var ThisHt=Nav4?this.clip.height:parseInt(this.style.height);
	var ThisWt=Nav4?this.clip.width:parseInt(this.style.width);
	var
ThisLft=AcrssFrms&&this.Level==1&&!WizFirstLineHorizontal?0:Nav4?this.Container.left:parseInt(this.Container.style.left);
	var
ThisTp=AcrssFrms&&this.Level==1&&WizFirstLineHorizontal?0:Nav4?this.Container.top:parseInt(this.Container.style.top);
	var HP=Nav4?this.LowLyr:this;
	CurrntOvr=this;
	IniFlg=0;
	ClearAllChilds(this.Container.FrstMbr);
	HiliteItem(HP);
	if(CCnt!=null){
		if(!ShwFlg){ShwFlg=1;	WizBeforeFirstOpen()}
		var
CCW=Nav4?this.LowLyr.ChildCntnr.clip.width:parseInt(this.ChildCntnr.style.width);
		var
CCH=Nav4?this.LowLyr.ChildCntnr.clip.height:parseInt(this.ChildCntnr.style.height);
		var ChCntTL=Nav4?this.LowLyr.ChildCntnr:this.ChildCntnr.style;
		var
SubLt=AcrssFrms&&this.Level==1?CCnt.OrgLeft+ThisLft+LScrlld:CCnt.OrgLeft+ThisLft;
		var SubTp=AcrssFrms&&this.Level==1?CCnt.OrgTop+ThisTp+TpScrlld:CCnt.OrgTop+ThisTp;
		if(WizMenuWrap){
			if(WizRightToLeft){
			
if(SubLt<LScrlld)SubLt=this.Level==1?LScrlld:SubLt+(CCW+(1-2*WizChildOverlap)*ThisWt);
				if(SubLt+CCW>ScWinWdth+LScrlld)SubLt=ScWinWdth+LScrlld-CCW}
			else{
if(SubLt+CCW>ScWinWdth+LScrlld)SubLt=this.Level==1?ScWinWdth+LScrlld-CCW:SubLt-(CCW+(1-2*WizChildOverlap)*ThisWt);
				if(SubLt<LScrlld)SubLt=LScrlld}
		
if(SubTp+CCH>TpScrlld+ScWinHght)SubTp=this.Level==1?SubTp=TpScrlld+ScWinHght-CCH:SubTp-CCH+(1-2*WizChildVerticalOverlap)*ThisHt;
			if(SubTp<TpScrlld)SubTp=TpScrlld}
		ChCntTL.top=SubTp;ChCntTL.left=SubLt;ChCntTL.visibility=M_Show}
	status=this.LinkTxt}

function OpenMenuClick(){
	if(!Loadd||!Creatd) return;
	var HP=Nav4?this.LowLyr:this;
	CurrntOvr=this;
	IniFlg=0;
	ClearAllChilds(this.Container.FrstMbr);
	HiliteItem(HP);
	status=this.LinkTxt}

function CloseMenu(){
	if(!Loadd||!Creatd) return;
	if(!WizKeepHilite){
		var HP=Nav4?this.LowLyr:this;
		LowItem(HP)}
	status='';
	if(this==CurrntOvr){
		IniFlg=1;
		if(CloseTmr)clearTimeout(CloseTmr);
		CloseTmr=setTimeout('Initiate(CurrntOvr)',WizDisappearDelay)}}

function CntnrSetUp(Wdth,Hght,NoOff){
	var x=RcrsLvl==1?WizBorderColor:WizBorderSubColor;
	this.FrstMbr=null;
	this.OrgLeft=this.OrgTop=0;
	if(x)this.bgColor=x;
	if(Nav4){	this.visibility='hide';
		this.resizeTo(Wdth,Hght)}
	else{	if(x)this.style.backgroundColor=x;
		this.style.width=Wdth;
		this.style.height=Hght;
		this.style.fontFamily=WizFontFamily;
		this.style.fontWeight=WizFontBold?'bold':'normal';
		this.style.fontStyle=WizFontItalic?'italic':'normal';
		this.style.fontSize=WizFontSize+'pt';
		this.style.zIndex=RcrsLvl+Ztop}}

function MbrSetUp(MmbrCntnr,PrMmbr,WhatMenu,Wdth,Hght){
	var Location=RcrsLvl==1?FrstLoc:ScLoc;
	var MemVal=eval(WhatMenu+'[0]');
	var t,T,L,W,H,S;
	var a,b,c,d;
	this.PrvMbr=PrMmbr;
	this.Level=RcrsLvl;
	this.LinkTxt=eval(WhatMenu+'[1]');
	this.Container=MmbrCntnr;
	this.ChildCntnr=null;
	this.Hilite=0;
	this.style.overflow='hidden';
	this.style.cursor=ExpYes&&(this.LinkTxt||(RcrsLvl==1&&WizUnfoldsOnClick))?'hand':'default';
	this.ro=0;
	if(MemVal.indexOf('rollover')!=-1){
		this.ro=1;
		this.ri1=MemVal.substring(MemVal.indexOf(':')+1,MemVal.lastIndexOf(':'));
		this.ri2=MemVal.substring(MemVal.lastIndexOf(':')+1,MemVal.length);
		this.rid=WhatMenu+'i';MemVal="<img src='"+this.ri1+"' name='"+this.rid+"'>"}
	this.value=MemVal;
	if(RcrsLvl==1){
		a=WizLowBgColor;
		b=WizHighBgColor;
		c=WizFontLowColor;
		d=WizFontHighColor}
	else{	a=WizLowSubBgColor;
		b=WizHighSubBgColor;
		c=WizFontSubLowColor;
		d=WizFontSubHighColor}
	this.LoBck=a;
	this.LwFntClr=c;
	this.HiBck=b;
	this.HiFntClr=d;
	this.style.color=this.LwFntClr;
	if(this.LoBck)this.style.backgroundColor=this.LoBck;
	this.style.textAlign=WizMenuTextCentered;
	if(eval(WhatMenu+'[2]'))this.style.backgroundImage="url(\'"+eval(WhatMenu+'[2]')+"\')";
	if(MemVal.indexOf('<')==-1){
		this.style.width=Wdth-LftXtra;
		this.style.height=Hght-TpXtra;
		this.style.paddingLeft=WizLeftPaddng;
		this.style.paddingTop=WizTopPaddng}
	else{	this.style.width=Wdth;
		this.style.height=Hght}
	if(MemVal.indexOf('<')==-1&&DomYes){
		t=Location.document.createTextNode(MemVal);
		this.appendChild(t)}
	else this.innerHTML=MemVal;
	if(eval(WhatMenu+'[3]')&&WizShowArrow){
		a=RcrsLvl==1&&WizFirstLineHorizontal?3:WizRightToLeft?6:0;
		S=WizArrws[a];
		W=WizArrws[a+1];
		H=WizArrws[a+2];
		T=RcrsLvl==1&&WizFirstLineHorizontal?Hght-H-2:(Hght-H)/2;
		L=WizRightToLeft?2:Wdth-W-2;
		if(DomYes){
			t=Location.document.createElement('img');
			this.appendChild(t);
			t.style.position='absolute';
			t.src=S;
			t.style.width=W;
			t.style.height=H;
			t.style.top=T;
			t.style.left=L}
		else{	MemVal+="<div style='position:absolute; top:"+T+"; left:"+L+";
width:"+W+"; height:"+H+";visibility:inherit'><img src='"+S+"'></div>";
			this.innerHTML=MemVal}}
	if(ExpYes){this.onselectstart=CnclSlct;
		this.onmouseover=RcrsLvl==1&&WizUnfoldsOnClick?OpenMenuClick:OpenMenu;
		this.onmouseout=CloseMenu;
		this.onclick=RcrsLvl==1&&WizUnfoldsOnClick&&eval(WhatMenu+'[3]')?OpenMenu:GoTo	}
	else{
RcrsLvl==1&&WizUnfoldsOnClick?this.addEventListener('mouseover',OpenMenuClick,false):this.addEventListener('mouseover',OpenMenu,false);
		this.addEventListener('mouseout',CloseMenu,false);
	
RcrsLvl==1&&WizUnfoldsOnClick&&eval(WhatMenu+'[3]')?this.addEventListener('click',OpenMenu,false):this.addEventListener('click',GoTo,false)}}

function NavMbrSetUp(MmbrCntnr,PrMmbr,WhatMenu,Wdth,Hght){
	var a,b,c,d;
	if(RcrsLvl==1){
		a=WizLowBgColor;
		b=WizHighBgColor;
		c=WizFontLowColor;
		d=WizFontHighColor}
	else {	a=WizLowSubBgColor;
		b=WizHighSubBgColor;
		c=WizFontSubLowColor;
		d=WizFontSubHighColor	}
	this.value=eval(WhatMenu+'[0]');
	this.ro=0;
	if(this.value.indexOf('rollover')!=-1){
		this.ro=1;
	
this.ri1=this.value.substring(this.value.indexOf(':')+1,this.value.lastIndexOf(':'));
		this.ri2=this.value.substring(this.value.lastIndexOf(':')+1,this.value.length);
		this.rid=WhatMenu+'i';this.value="<img src='"+this.ri1+"' name='"+this.rid+"'>"}
	if(WizLeftPaddng&&this.value.indexOf('<')==-1&&WizMenuTextCentered=='left')this.value='&nbsp\;'+this.value;
	if(WizFontBold)this.value=this.value.bold();
	if(WizFontItalic)this.value=this.value.italics();
	this.Ovalue=this.value;
	this.value=this.value.fontcolor(c);
	this.Ovalue=this.Ovalue.fontcolor(d);
	this.value=CntrTxt+"<font face='"+WizFontFamily+"'
point-size='"+WizFontSize+"'>"+this.value+TxtClose;
	this.Ovalue=CntrTxt+"<font face='"+WizFontFamily+"'
point-size='"+WizFontSize+"'>"+this.Ovalue+TxtClose;
	this.LoBck=a;
	this.HiBck=b;
	this.ChildCntnr=null;
	this.PrvMbr=PrMmbr;
	this.Hilite=0;
	this.visibility='inherit';
	if(this.LoBck)this.bgColor=this.LoBck;
	this.resizeTo(Wdth,Hght);
	if(!AcrssFrms&&eval(WhatMenu+'[2]'))this.background.src=eval(WhatMenu+'[2]');
	this.document.write(this.value);
	this.document.close();
	this.CmdLyr=new Layer(Wdth,MmbrCntnr);
	this.CmdLyr.Level=RcrsLvl;
	this.CmdLyr.LinkTxt=eval(WhatMenu+'[1]');
	this.CmdLyr.visibility='inherit';
	this.CmdLyr.onmouseover=RcrsLvl==1&&WizUnfoldsOnClick?OpenMenuClick:OpenMenu;
	this.CmdLyr.onmouseout=CloseMenu;
	this.CmdLyr.captureEvents(Event.MOUSEUP);
	this.CmdLyr.onmouseup=RcrsLvl==1&&WizUnfoldsOnClick&&eval(WhatMenu+'[3]')?OpenMenu:GoTo;
	this.CmdLyr.LowLyr=this;
	this.CmdLyr.resizeTo(Wdth,Hght);
	this.CmdLyr.Container=MmbrCntnr;
	if(eval(WhatMenu+'[3]')&&WizShowArrow){
		a=RcrsLvl==1&&WizFirstLineHorizontal?3:WizRightToLeft?6:0;
		this.CmdLyr.ImgLyr=new Layer(WizArrws[a+1],this.CmdLyr);
		this.CmdLyr.ImgLyr.visibility='inherit';
	
this.CmdLyr.ImgLyr.top=RcrsLvl==1&&WizFirstLineHorizontal?Hght-WizArrws[a+2]-2:(Hght-WizArrws[a+2])/2;
		this.CmdLyr.ImgLyr.left=WizRightToLeft?2:Wdth-WizArrws[a+1]-2;
		this.CmdLyr.ImgLyr.width=WizArrws[a+1];
		this.CmdLyr.ImgLyr.height=WizArrws[a+2];
		ImgStr="<img src='"+WizArrws[a]+"' width='"+WizArrws[a+1]+"'
height='"+WizArrws[a+2]+"'>";
		this.CmdLyr.ImgLyr.document.write(ImgStr);
		this.CmdLyr.ImgLyr.document.close()}}

function CreateMenuStructure(MName,NumberOf){
	RcrsLvl++;
	var i,NoOffSubs,Mbr,Wdth=0,Hght=0;
	var PrvMmbr=null;
	var WMnu=MName+'1';
	var MenuWidth=eval(WMnu+'[5]');
	var MenuHeight=eval(WMnu+'[4]');
	var Location=RcrsLvl==1?FrstLoc:ScLoc;
	if (RcrsLvl==1&&WizFirstLineHorizontal){
		for(i=1;i<NumberOf+1;i++){
			WMnu=MName+eval(i);
			Wdth=eval(WMnu+'[5]')?Wdth+eval(WMnu+'[5]'):Wdth+MenuWidth}
	
Wdth=WizBorderBtwnElmnts?Wdth+(NumberOf+1)*WizBorderWidth:Wdth+2*WizBorderWidth;Hght=MenuHeight+2*WizBorderWidth}
	else{	for(i=1;i<NumberOf+1;i++){
			WMnu=MName+eval(i);
			Hght=eval(WMnu+'[4]')?Hght+eval(WMnu+'[4]'):Hght+MenuHeight}
	
Hght=WizBorderBtwnElmnts?Hght+(NumberOf+1)*WizBorderWidth:Hght+2*WizBorderWidth;Wdth=MenuWidth+2*WizBorderWidth}
	if(DomYes){
		var MmbrCntnr=Location.document.createElement("div");
		MmbrCntnr.style.position='absolute';
		MmbrCntnr.style.visibility='hidden';
		Location.document.body.appendChild(MmbrCntnr)}
	else{	if(Nav4) var MmbrCntnr=new Layer(Wdth,Location)
		else{	WMnu+='c';
			Location.document.body.insertAdjacentHTML("AfterBegin","<div id='"+WMnu+"'
style='visibility:hidden; position:absolute;'><\/div>");
			var MmbrCntnr=Location.document.all[WMnu]}}
	MmbrCntnr.SetUp=CntnrSetUp;
	MmbrCntnr.SetUp(Wdth,Hght,NumberOf);
	if(Exp4){	MmbrCntnr.InnerString='';
		for(i=1;i<NumberOf+1;i++){
			WMnu=MName+eval(i);
			MmbrCntnr.InnerString+="<div id='"+WMnu+"' style='position:absolute;'><\/div>"}
		MmbrCntnr.innerHTML=MmbrCntnr.InnerString}
	for(i=1;i<NumberOf+1;i++){
		WMnu=MName+eval(i);
		NoOffSubs=eval(WMnu+'[3]');
	
Wdth=RcrsLvl==1&&WizFirstLineHorizontal?eval(WMnu+'[5]')?eval(WMnu+'[5]'):MenuWidth:MenuWidth;
	
Hght=RcrsLvl==1&&WizFirstLineHorizontal?MenuHeight:eval(WMnu+'[4]')?eval(WMnu+'[4]'):MenuHeight;
		if(DomYes){
			Mbr=Location.document.createElement("div");
			Mbr.style.position='absolute';
			Mbr.style.visibility='inherit';
			MmbrCntnr.appendChild(Mbr)}
		else Mbr=Nav4?new Layer(Wdth,MmbrCntnr):Location.document.all[WMnu];
		Mbr.SetUp=Nav4?NavMbrSetUp:MbrSetUp;
		Mbr.SetUp(MmbrCntnr,PrvMmbr,WMnu,Wdth,Hght);
		if(NoOffSubs) Mbr.ChildCntnr=CreateMenuStructure(WMnu+'_',NoOffSubs);
		PrvMmbr=Mbr}
	MmbrCntnr.FrstMbr=Mbr;
	RcrsLvl--;
	return(MmbrCntnr)}

function CreateMenuStructureAgain(MName,NumberOf){
	var i,WMnu,NoOffSubs,PrvMmbr,Mbr=FrstCntnr.FrstMbr;
	RcrsLvl++;
	for(i=NumberOf;i>0;i--){
		WMnu=MName+eval(i);
		NoOffSubs=eval(WMnu+'[3]');
		PrvMmbr=Mbr;
		if(NoOffSubs)Mbr.ChildCntnr=CreateMenuStructure(WMnu+'_',NoOffSubs);
		Mbr=Mbr.PrvMbr}
	RcrsLvl--}
//]]>
</script>
<noscript>Your browser does not support script</noscript>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
 <tbody><tr align="center" bgcolor="" height="0" valign="middle">


     <td width="0">
     </td>
    <td> 

    </td>
  </tr>
  <tr bgcolor="">


     <td> </td>
     <td align="center"> 
	
<table align="left"><tbody><tr><td>
    <div id="MenuPos" style="position: relative; width: 100%; height:
100%;"><img src="LANSAWEB_%E1%F1%F7%E5%DF%E1/clearpixel.gif" alt=" " height="19"
width="138"></div>
</td></tr></tbody></table>




     </td>
  </tr>
  <tr>
    <td align="center" valign="top">

    </td>
    <!--td valign="top" align="center"-->
    <td align="left" valign="top">

	   <br><!-- Process  : WEB_INFORM ΠΛΗΡΟΦΟΡΗΣΗ ΣΥΝΕΡΓΑΤΩΝ ΜΕΣΩ WEB         -->
<!-- Function : WEBINF1    ΑΝΑΖΗΤΗΣΕΙΣ ΠΑΡΑΓΩΓΗΣ                   -->
<!-- Page     : 001                                                -->

<!-- Generated by    - LANSA                                       -->
<!-- Created by user - TAKIS                                       -->
<!-- Time and Date   - 105356131004                                -->

<!-- RDML function sequence number - 0011                          -->

<!-- This is a *WEBEVENT function                                  -->

<form method="post" name="LANSA"
action="/CGI-BIN/LANSAWEB?WEBEVENT+L084634573ED18200A589031+WEB">

<input name="_NAME" size="20" maxlength="20" value="&amp;NULL" type="hidden">
<input name="_ROW" size="2" maxlength="2" value="01" type="hidden">
<input name="_COLUMN" size="2" maxlength="2" value="01" type="hidden">
<input name="_SELECT" size="6" maxlength="6" value="00" type="hidden">
<input name="_PANEL" value="WEB_INFORMWEBINF1001" type="hidden">
<input name="_BUTTON" value="OK" type="hidden">
<input name="_CALFLD" size="20" maxlength="20" value="&amp;NULL" type="hidden">
<input name="_PROCESS" size="10" maxlength="10" value="WEB_INFORM " type="hidden">
<input name="_FUNCTION" size="10" maxlength="10" value="WEBINF1 " type="hidden">
<input name="_OPROCESS" size="10" maxlength="10" value="WEB_INFORM" type="hidden">
<input name="_OFUNCTION" size="10" maxlength="10" value="WEBINF1" type="hidden">
<input name="_PARTITION" size="3" maxlength="3" value="WEB" type="hidden">
<input name="_COLORFLD" size="10" maxlength="10" value="" type="hidden">
<input name="_LW3TRCID" size="15" maxlength="15" value="" type="hidden">
<input name="_EXCHALLBL" size="10" maxlength="10" value="" type="hidden">

<!--                                         -->
<!--     LANSA for the Web                   -->
<!--     Standard Header                     -->
<!--     Last Modified:  9.1  2001-12-18     -->

<img src="LANSAWEB_%E1%F1%F7%E5%DF%E1/aspis_slogan.jpg" alt="Logo"><br>

<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody>
<tr valign="bottom">
   <td height="21" nowrap="nowrap" width="470">









   </td>
</tr>
</tbody></table><br clear="all"><br>

<center><h1>         Αναζητήσεις παραγωγής          </h1></center>

<br>


<basefont size="">
<table border="0" cellpadding="0" cellspacing="3">
<tbody>

<tr>
<td><input name="SPOLNO    " size="7" maxlength="7" value="" type="hidden"></td>
</tr>

</tbody>
</table>
<br>


<table border="0" cellpadding="2" cellspacing="3"><tbody><tr>
<td></td></tr></tbody></table>

<!--                                         -->
<!--     LANSA for the Web                   -->
<!--     Standard Footer                     -->
<!--     Last Modified:  9.1  2001-09-10     -->
<br>
<br>
<h4 align="center">Powered by ASPIS Lansa Web Development Team</h4>

</form>

    </td>
  </tr>
</tbody></table>
<div style="position: absolute; background-color: black; font-family:
Verdana,Tahoma,Arial; font-weight: normal; font-style: normal; font-size: 8pt;
z-index: 101; visibility: visible;"><div style="position: absolute; visibility:
inherit; overflow: hidden; cursor: default; color: black; background-color:
rgb(204, 204, 255); text-align: left;">Αρχική Σελίδα</div><div style="position:
absolute; visibility: inherit; overflow: hidden; cursor: default; color: black;
background-color: rgb(204, 204, 255); text-align: left;">Συμβόλαια<img
src="LANSAWEB_%E1%F1%F7%E5%DF%E1/wiztridown.gif" style="position:
absolute;"></div><div style="position: absolute; visibility: inherit; overflow:
hidden; cursor: default; color: black; background-color: rgb(204, 204, 255);
text-align: left;">Πελάτες<img src="LANSAWEB_%E1%F1%F7%E5%DF%E1/wiztridown.gif"
style="position: absolute;"></div></div><div style="position: absolute;
background-color: black; font-family: Verdana,Tahoma,Arial; font-weight: normal;
font-style: normal; font-size: 8pt; z-index: 102; top: 0pt; left: 0pt;
visibility: hidden;"><div style="position: absolute; visibility: inherit;
overflow: hidden; cursor: default; color: black; background-color: rgb(204, 204,
255); text-align: left;">Με αριθμό συμβολαίου</div><div style="position:
absolute; visibility: inherit; overflow: hidden; cursor: default; color: black;
background-color: rgb(204, 204, 255); text-align: left;">Με αριθμό
αίτησης</div><div style="position: absolute; visibility: inherit; overflow:
hidden; cursor: default; color: black; background-color: rgb(204, 204, 255);
text-align: left;">Με αριθμό κυκλοφορίας</div><div style="position: absolute;
visibility: inherit; overflow: hidden; cursor: default; color: black;
background-color: rgb(204, 204, 255); text-align: left;">Με διεύθυνση
κινδύνου</div><div style="position: absolute; visibility: inherit; overflow:
hidden; cursor: default; color: black; background-color: rgb(204, 204, 255);
text-align: left;">Με επώνυμο πελάτη</div></div><div style="position: absolute;
background-color: black; font-family: Verdana,Tahoma,Arial; font-weight: normal;
font-style: normal; font-size: 8pt; z-index: 102; top: 0pt; left: 0pt;
visibility: hidden;"><div style="position: absolute; visibility: inherit;
overflow: hidden; cursor: default; color: black; background-color: rgb(204, 204,
255); text-align: left;">Με επώνυμο πελάτη</div></div></body></html>
Well, there's nothing in IE6 either when you just copy/paste that code.

This needs a real URL to look at, or a more reliable (and reduced) test case.
Please create a minimized (as small as possible) testcase to show the problem,
then upload it to the bug:
https://bugzilla.mozilla.org/attachment.cgi?bugid=264318&action=enter
Unfortunately the page was generated by a tool (Lansa/Web)and I am not well
versed in HTML to be able to hack it without destroying the menus.  It has
almost no content anyway.  The menus are mauve and they are located on the top
of the page.  I can see from the comments that the menus are done with DHTML
10.0.  Is it supported?
I can confirm this bug.. both in 1.0 release and earlier. 

On IE this function exists in the browser.. and inserts the content in the body. 

document.body.insertAdjacentHTML('some body content');

Description from Microsoft here:
http://msdn.microsoft.com/workshop/author/dhtml/reference/methods/insertadjacenthtml.asp

Mozilla workaround. 
http://jscript.dk/faq/mozinsertadjacenthtml.html

Why can I not mark this bug as confirmed?
Note that we have no plans to implement insertAdjacentHTML.
The site with the workaround is no longer functional.  Can I find the
information anywhere else?

In addition, Is there anyway to increase the priority of the implementation of
InsertHTML?  We are currently evaluating SunRays for deployment but the
environment will not be able to support viewing our own pages!  Can we at least
have an indication of a possible timeframe?
I did some research and found workarounds for the insertAdjacentHTML method.  It
seems that it still does not work. That led me to believe that it is not a bug
related to this function.

I checked the html code (with my limited knowledge) and confirmed that the line
that has the insertAdjacentHtml call is never executed.  Just before the
execution the code checks for the DomYes variable and uses the other branch.

So I do no understand why this is not working in Firefox.  I believe you can
confirm my analysis by removing the if (DomYes) together with the else part
(which has the insertAdjacentHtml call) and try it again.  You should see that
it is not functioning.

All the above is in the code of the CreateMenuStructure function.

Can someone please confirm that this is a bug and explain why it is happening? 
I would really like to give the go ahead for a sun-ray installation but I
cannot, mainly because of this issue.

Ragards,
Harry
(In reply to comment #7)
> So I do no understand why this is not working in Firefox.  
> Can someone please confirm that this is a bug and explain why it is happening? 

Reason that this does not work in Firefox is due to that insertAdjacentHTML
method is not implemented and will probably never be (see comment 5). The
insertAdjacentHTML is a non-standard Miscrosoft method. 

You can use this js file:
http://jscript.dk/faq/mozEmuLarholm2.js
that will simulate insertAdjacentHTML(), insertAdjacentText() and
insertAdjacentElement() in Mozilla browsers.

Or even better, you can instead use the insertBefore method that works well in
both browsers:
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods.asp
http://www.mozilla.org/docs/dom/domref/dom_el_ref47.html#1028897

I am going to dupe this bug to another bug that requested to implement
insertAdjacentHtml


*** This bug has been marked as a duplicate of 127885 ***
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → DUPLICATE
As I mentioned in my last comment this is NOT hapenning because of
InsertAdjacentHTML function.

Can please someone confirm why it is happening?
Status: RESOLVED → UNCONFIRMED
Resolution: DUPLICATE → ---
Can you please attach a minimized (as small as possible, no css and other stuff)
testcase that shows the problem? Without it its very difficult to know what the
problem is.
This page does not have insertAdjacentHTML in the code.
I am very sorry for the size of the html page I attached.  I will try to make it
smaller but I do not know how to code in html and so it is a bit difficult for
me.  I will do my best but with this page as a starting point someone well
versed in html can make it very small.  The important function is
CreateMenuStructure.
Yes, that is not a minimized testcase. Bugzilla is for reporting bugs, not to
get help to make scripts work. You should contact the author that wrote the
script and point out that it doesnt work in Mozilla.
If you just remove the doctype, things work.  The reason is obvious when you
look at the errors in the JS console -- the script sets CSS length values to
unitless numbers, and we only accept that in quirks mode, while the XHTML
doctype makes the page be rendered in standards mode.

Marking invalid, since things are working like they're supposed to be.
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago20 years ago
Resolution: --- → INVALID
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: