/**
 * Some function for formak.hu
 */
 
function showImageWindow(pURL, pWidth, pHeight) {
  needScroll="";
  if (pWidth > screen.availWidth)
  {
     pWidth = screen.availWidth-100;
     pHeight = pHeight + 16;
     needScroll="scrollbars=yes,";
  }
  if (pHeight > screen.availHeight)
  {
     pHeight = screen.availHeight-100;
     pWidth = pWidth + 16;
     needScroll="scrollbars=yes,";
  }
  window.open(pURL,"ShowImage",needScroll+"titlebar=no,width=" + pWidth + ",height=" + pHeight + ",left=" + (screen.availWidth-pWidth)/2 + ",top=" + (screen.availHeight-pHeight)/2 + ",resizable=yes" );
}

function showLinkWindow(pURL) {
	window.open(pURL,"ShowLink");
}

function easter_DoFSCommand(command, args) {
	if (command=="showImageWindow")
	{
		showImageWindow(args,300,270);
	}
}
