

function Navigate(szURL)
{
    window.location.href = szURL;
}


function PopupWindow(szURL, nWidth, nHeight, nScroll)
{
    var szWindowOptions;
    var szChar;
    var m_date;

    szWindowOptions = "left=100,top=100,width=" + nWidth + ",height=" + nHeight +
                      ",scrollbars=" + nScroll + ",status=0,resizable=1";

    window.open(szURL, "", szWindowOptions);
}

function Home()
{
	Navigate("index.htm");
}

function CurrentProjects()
{
	Navigate("projects.htm");
}

function PublicArt()
{
	Navigate("public_art.htm");
}

function Events()
{
	Navigate("events.htm");
}

function Bronze()
{
	Navigate("bronze.htm");
}

function Resources()
{
	Navigate("resources.htm");
}

function Membership()
{
	window.open("pdfs/ArtWallaMembershipForm.pdf");
}

function ViewArtist(nIndex)
{
	var szURL;
	var vPages = new Array(16);

	vPages[0] = "nano_lopez.htm";
	vPages[1] = "jeanne_mcmenemy.htm";	
	vPages[2] = "wayne_chabre.htm";
	vPages[3] = "ian_jennifer_boyden.htm";
	vPages[4] = "bill_piper.htm";
	vPages[5] = "tom_emmerson.htm";
	vPages[6] = "bill_piper.htm";
	vPages[7] = "squire_broel.htm";	
	vPages[8] = "ralph_trethewey.htm";	
	vPages[9] = "squire_broel.htm";
	vPages[10] = "wayne_chabre.htm";
	vPages[11] = "brad_rude.htm";
	vPages[12] = "ralph_trethewey.htm";
	vPages[13] = "wayne_chabre.htm";
	vPages[14] = "bill_piper.htm";
	vPages[15] = "hans_matschukat.htm";
	
	szURL = "artists/";
	szURL += vPages[nIndex - 1];
		
	window.open(szURL);
}

function ColoringBook()
{
	Navigate("coloring_book.htm");
}

function Email()
{
	Navigate("mailto:jeannemc@charter.net");
}