<!--
var windowCount = 1;

function showModal(msg) {
	alert(msg);
}

function closeFrame() {
	self.close();
}

function changePage() {
	if (self.parent.frames.length != 0)
		self.parent.location = document.location;
}

function gonext(thePage) {
	i = window.opener;	
	if (i == null) {
		document.location = thePage;
	}
	else {
		opener.location = thePage;
	    self.close();
	}
}

function changeHREF(theAnchor, theLink, theWidth, theHeight) {
	theAnchor.href = theLink;
}

function openFRAME(theAnchor, theFile, aWidth, aHeight) {
	var windowName = 'Window'+windowCount;
	var theLink = 'JavaScript:openNewWindow(\''+theFile+'\',\''+windowName+'\','+aWidth+','+aHeight+')';
	theAnchor.href = theLink;
	theAnchor.target = "";
}

function openNewWindow(fileName,windowName,theWidth,theHeight) {
	window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight);
	windowCount++;
}

function changePRINT(theAnchor, theFile, aWidth, aHeight) {
	var windowName = 'Window'+windowCount;
	var theLink = 'JavaScript:openPRINTWindow(\''+theFile+'\',\''+windowName+'\','+aWidth+','+aHeight+')';
	theAnchor.href = theLink;
	theAnchor.target = "";
}

function openPRINTWindow(fileName,windowName,theWidth,theHeight) {
	window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight);
	windowCount++;
}

version = "0";
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
has_loaded=0;
var status1 = "Art for Kids";
var status2 = "Art for the Kitchen";
var status3 = "Contemporary Christian";
var status4 = "Still Life";
var status5 = "Landscapes";
var status6 = "The Figure";
var status7 = "Corporate Art";
var status8 = "Pardieu Studios Homepage";

function loadimage()
{
if (browserName == "Netscape" && browserVer >= 3) version = "n3";
if (browserName == "Microsoft Internet Explorer" && browserVer >= 3) version = "n3";
if (version == "n3")
  {
 overImage1 = new Image();
 overImage1.src = "images/bullet-arrow.gif";
 
 outImage1 = new Image();
 outImage1.src = "images/spacer8.gif";

 has_loaded=1;
  }
}

function mouse_over(imageNum) {
{
	var iNum;
	var i;
	var name;
	var iname;
	name = "status"+imageNum;
	window.status = eval(name);
	if (version != "n3")
	  return true;
	iNum = parseInt(imageNum);
	name = "image"+iNum;
	iname = "overImage1.src";
	document[name].src = eval(iname);  
}
  return true;
}

function mouse_out(imageNum) {
if (has_loaded==1)
{
	var iNum;
	var i;
	var name;
	var iname;
	window.status = " ";
	if (version != "n3")
	  return true;
	iNum = parseInt(imageNum);
	name = "image"+iNum;
	iname = "outImage1.src";
	document[name].src = eval(iname);  
}
  return true;
}