/*************************************************************************
  This code is from Dynamic Web Coding at www.dyn-web.com
  Copyright 2003-4 by Sharon Paine 
  See Terms of Use at www.dyn-web.com/bus/terms.html
  regarding conditions under which you may use this code.
  This notice must be retained in the code as is!
*************************************************************************/

var obj1, obj2, obj3, obj4;
function init() {
  // Arguments to constructor: id, x, y, w, y
  obj1 = new dynObj('headercaptionloginform', 0, -83, null, null);
  obj1.show();
  // Arguments to slideTo method: destination x, destination y, duration of slide, acceleration factor 
  // which should be number between -1 and 1 ( -1 full decelerated, 1 full accelerated, 0 linear, i.e. no acceleration)
  obj1.slideTo(0, -83, 500, -1); 
}

function loginSlide()
{
obj1.slideTo(0, 0, 500, -1); 

}

function closeSlide()
{
obj1.slideTo(0, -83, 500, -1); 

}
