/////////////////////////////////////////////////////////////////////////////
// Version 1.04 Signed by Sid Paral @ MORTICIA on 2002/07/30 20:53:16 (GMT-0700)
// Authentication (do not edit) $q0ULmR$
// Copyright (c) 1999-2002 by Sid Paral. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
//
// image loading support JavaScript
//

// load image into cache

function loadcache (picFile, width, height)
{
	if (document.images)
	{
		var	img = new Image (width, height);
		img.src = picFile;
		return true;
	}
	else return false;
}

// load one image into referenced position

function loadpic (picRef, picFile)
{
	if (document.images)
	{
		document[picRef].src = picFile;
	}
}

// open new "_blank" window with a picture and of given size

function openPixWnd(url, width, height)
{
	width	+=	36;
	height	+=	36;
	var	aW	=	screen.availWidth - 16;
	var aH	=	screen.availHeight - 48;
	if (width > aW)
		width = aW;
	if (height > aH)
		height = aH;
	window.open (url, "_blank",
				"toolbar=no,location=no,directories=no,status=no," +
				"menubar=no,scrollbars=yes,resizable=yes," +
				"screenX=0,screenY=0," +
				"width=" + width + ",height=" + height);
	return false;
}

