  function flip(rid)
  {
    current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none';
    document.getElementById(rid).style.display = current;
  }

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function screenshot(v1,v2,v3) {
  Screenshot = open(v1, v2, v3);
  Screenshot.focus();
}

function toggle ( sBox )
{
obj = document.getElementById (sBox);
obj.style.display = ( obj.style.display == 'block' ) ? 'none' : 'block';
}

function CommonPopup(url, width, height, wndname)
{
	wnd = window.open(url, wndname,'toolbar=no, location=no, scrollbars=1, width=' + width + ', height=' + height + ', left=100, top=100, alwaysRaised=true');
	wnd.focus();
	
	if (wnd.opener == null)
	{ 
		wnd.opener = self;
	}
}

function ShowPolicy ()
	{
		CommonPopup ('/policy.html', 640, 400, 'policy');
	}