function OpenWindow(w, h)
{
	margin = 40;
	resize = 'no';
	scrollbars = 'no';
	ww = w + 6;
	hh = h + 30;
	if(w > screen.availWidth - (margin * 2) - 12)
	{
		resize = 'yes';
		scrollbars = 'yes';
		w = screen.availWidth - (margin * 2) - 28;
		ww = w + 22;
	}
	if(h > screen.availHeight - (margin * 2) - 30)
	{
		resize = 'yes';
		scrollbars = 'yes';
		h = screen.availHeight - (margin * 2) - 46;
		hh = h + 46;
	}
	xStart = Math.abs((screen.availWidth - ww) / 2);
	yStart = Math.abs((screen.availHeight - hh) / 2);
	return window.open('', '', 'width=' + w + ',height=' + h + ',left=' + xStart + ',top=' + yStart + 'directories=no,location=no,menubar=no,resizable=' + resize + ',scrollbars=' + scrollbars + ',status=no');
}

function OpenFile(u) {
	window.open(u);
}

function OpenImage(w, h, u, t)
{
  myWindow = OpenWindow(w, h);
  myWindow.document.write('<html>\n');
  myWindow.document.write('  <head>\n');
  myWindow.document.write('    <title>' + t + '</title>\n');
  myWindow.document.write('  </head>\n');
  myWindow.document.write('  <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
  myWindow.document.write('    <img src="' + u + '" border="0">\n');
  myWindow.document.write('  </body>\n');
  myWindow.document.write('</html>\n');
}