       function submitThisForm(turl, wd, ht, toolbar, target)
       {
             var windowFeatures =  '';

             if(target == "c")
             {

                window_width = wd;
                window_height = ht;
                window_top = (screen.availHeight-window_height)/2
                window_left = (screen.availWidth-window_width)/2
                windowFeatures += "width=" + window_width + ",height=" + window_height + ",top="
                windowFeatures += window_top
                windowFeatures += ",left="
                windowFeatures += window_left
                windowFeatures += ',status=1'
                windowFeatures += ',scrollbars=yes'
                if(toolbar == "y")
                {
                         windowFeatures += ',toolbar=yes'
                }
                else
                {
                         windowFeatures += ',toolbar=no'
                }
                window.open(turl,"newwin",windowFeatures);

             }
             if(target == "s")
             {

                 window.parent.frames[1].location.href= turl;

             }

             if(target == "n")
             {

                 wd = "800";
                 ht = "600";
                 window_width = wd;
                 window_height = ht;
                 window_top = (screen.availHeight-window_height)/2
                 window_left = (screen.availWidth-window_width)/2
                 windowFeatures += "width=" + window_width + ",height=" + window_height + ",top="
                 windowFeatures += window_top
                 windowFeatures += ",left="
                 windowFeatures += window_left
                 windowFeatures += ',status=1'
                 windowFeatures += ',scrollbars=yes'
                 windowFeatures += ',toolbar=yes'
                 window.open(turl,"newwin",windowFeatures);


             }

       }

function showContent()
{
         current=document.forms[1].link_id_side.options[document.forms[1].link_id_side.selectedIndex].value;
         arrayOfStrings = current.split(",");
         if(arrayOfStrings[2]=="c")
         {
            width=arrayOfStrings[3];
            height=arrayOfStrings[4];
            path="displayContent.php3?link_id=" + document.forms[1].link_id_side.options[document.forms[1].link_id_side.selectedIndex].value + "&link_id_side=" + current ;
            openWindowCustom('showContent', path,width,height);
            //to move the links frame to home
            window.location.href = 'displayLinkPage.php3?parent_link=0&parent_link_dump=0&link_id=1&firstTime=yes'  + "&link_id_side=" + current;
         }
         if(arrayOfStrings[2]=="s")
         {
            document.forms[1].action="displayContent.php3?link_id=" + document.forms[1].link_id_side.options[document.forms[1].link_id_side.selectedIndex].value;
            document.forms[1].target="text";
            document.forms[1].submit();
            //to move the links frame to home
            window.location.href = 'displayLinkPage.php3?parent_link=0&parent_link_dump=0&link_id=1&firstTime=yes'  + "&link_id_side=" + current;
         }
         if(arrayOfStrings[2]=="n")
         {
            //document.forms[1].action="displayContent.php3?link_id=" + document.forms[1].link_id_side.options[document.forms[1].link_id_side.selectedIndex].value ;
            //document.forms[1].target="new";
            //document.forms[1].submit();
            path="displayContent.php3?link_id=" + document.forms[1].link_id_side.options[document.forms[1].link_id_side.selectedIndex].value + "&link_id_side=" + document.forms[1].link_id_side.options[document.forms[1].link_id_side.selectedIndex].value ;
            window.open(path, 'test');
            //to move the links frame to home
            window.location.href = 'displayLinkPage.php3?parent_link=0&parent_link_dump=0&link_id=1&firstTime=yes'  + "&link_id_side=" + current;
         }
}