<!-- Begin
	sitePath1  = "http://dla1.redbit.gr/";


	function sbm(frmName){
		frmName.submit();
	}
			
	var win = null;
	function print_(printThis)
	{
		win = window.open();
		self.focus();
		win.document.open();
		win.document.write('<'+'html'+'><'+'head'+'><'+'title'+'>Print<'+'/'+'title'+'><'+'style'+'>div{font-size:10px;} table{font-size:10px;} body{font-size:10px;font-family:Verdana;} .printImg{display:none;} .rssImg{display:none;}<'+'/'+'style'+'>');
		win.document.write('<'+'/'+'head'+'><'+'body'+'>');
		win.document.write(document.getElementById(printThis).innerHTML);
		win.document.write('<'+'/'+'body'+'><'+'/'+'html'+'>');
		win.document.close();
		//win.print();
		//win.close();
	}

   function alertContents() {
      if(http_request.readyState == 4) {
         if(http_request.status == 200) {
            //alert(http_request.responseText);
            result = http_request.responseText;
            document.getElementById('DIV_INFO').innerHTML = result;            
         } else {
            alert('There was a problem with the request.');
         }
      }
   }
   
   function get(obj) {
      var poststr = "mytextarea1=" + encodeURI( document.getElementById("mytextarea1").value ) +
                    "&mytextarea2=" + encodeURI( document.getElementById("mytextarea2").value );
      makePOSTRequest('post.php', poststr);
   }
   
var NS4 = (navigator.appName == "Netscape" && parseInt(navigator.appVersion) < 5);

function addOption(theSel, theText, theValue)
{
  var newOpt = new Option(theText, theValue);
  var selLength = theSel.length;
  theSel.options[selLength] = newOpt;
}

function deleteOption(theSel, theIndex)
{ 
  var selLength = theSel.length;
  if(selLength>0)
  {
    theSel.options[theIndex] = null;
  }
}

function moveOptions(theSelFrom, theSelTo)
{
  
  var selLength = theSelFrom.length;
  var selectedText = new Array();
  var selectedValues = new Array();
  var selectedCount = 0;
  
  var i;
  
  for(i=selLength-1; i>=0; i--)
  {
    if(theSelFrom.options[i].selected)
    {
      selectedText[selectedCount] = theSelFrom.options[i].text;
      selectedValues[selectedCount] = theSelFrom.options[i].value;
      deleteOption(theSelFrom, i);
      selectedCount++;
    }
  }
  
  for(i=selectedCount-1; i>=0; i--)
  {
    addOption(theSelTo, selectedText[i], selectedValues[i]);
  }
  
  if(NS4) history.go(0);
}

function move(tSform,to) {
	var total = tSform.options.length-1;
	var index = tSform.selectedIndex;
	if (index == -1) return false;
	if (to == +1 && index == total) return false;
	if (to == -1 && index == 0) return false;
	var items = new Array;
	var values = new Array;
	
	for (i=total;i>=0;i--){
		if(tSform.options[i].text.indexOf(".")==-1){
			values[i] = tSform.options[i].value;
			items[i] = tSform.options[i].text;
		}else{
			
			splitArray1 = tSform.options[i].text.split(".");
			items[i] = splitArray1[1];

			splitArray = tSform.options[i].value.split(".");
			values[i] =  splitArray[1];
		}
	}
	for(i=total;i>=0;i--){
	if (index == i) {
		tSform.options[i + to] = new Option(i+to + '.' + items[i],i+to + '.' + values[i],0,1);
		tSform.options[i] = new Option(i + '.' + items[i + to],i + '.' + values[i+to]);
		i--;
	}
	else{
		tSform.options[i] = new Option(i+'.'+items[i],i+'.'+values[i]);
	   }
	}
	tSform.focus();
}


//  End -->
