
// ..................................................................

function imagePopup(imageUrl, imageW, imageH)
{
	x3 = imageW;
	y3 = imageH;
	x4 = (screen.width < 2000) ? (screen.width / 2 - (x3 / 2)) : (screen.width / 4 - (x3 / 2));
	y4 = screen.height / 2 - (y3 / 2);
	mywin = window.open('', 'big', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width=' + x3 + ',height=' + y3 + ',top=' + y4 + ',left=' + x4 + '');
	mywin.document.open();

	if(navigator.appName == "Microsoft Internet Explorer")
	{
		mywin.window.resizeTo(x3 + 10, y3 + 25);
	}

	mywin.document.write("<title></title><body bgcolor=#ffffff leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 onblur='window.close();'><a href='javascript:window.close()'><img src='" + imageUrl + "' border=0></a></body>");
	mywin.document.close;
	mywin.focus();

	return false;
}

// ..................................................................

function popup(href, title, width, height)
{
	this_top = (screen.height - height) / 2;
	this_left = (screen.width - width) / 2;
	xx = window.open(href, title, 'toolbar=no, scrollbars=yes, menubar=no, directories=no, status=no, resizable=no, width=' + width + ', height=' + height + ', top=' + this_top + ', left=' + this_left);
	xx.focus();

	return false;
}

// ..................................................................
