/******************************************************************************

* carol.js                                                                *

*                                                                             *

* Copyright 2004 by John Morici.             				      *

* Visit http://www.biznuzz.com                                                *                                       *

* Last update: October 11, 2004.                                             *

*                                                                             *

*                                                                         *

******************************************************************************/



// Variable Definition

		vzoom=1.0



// Determine browser.

                var browser= "none";



                if(navigator.userAgent.indexOf("MSIE") != -1)

                browser="IE";

                if(navigator.userAgent.indexOf("en") != -1)

                browser="NS";





//-----------------------------------------------------------------------------





//Launch Windows



function appl(app) {

		newform=window.open(app,"form","border=0, toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=600, top=100,left=100,alwaysraised=1");

		return;

		}

                               

function appl2(app) {

		newform=window.open(app,"form2","border=0, toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,width=620,height=400,top=100,left=100,alwaysraised=1");

		return;

		}

		

//Print Windows



function printwindow() {  

		opener.main.focus() 

		opener.main.print()

		}

		





//content select



function showcontent(cont) {

		document.all.content.src=cont;

		return

		}





//Menu Rollover



function liteon2(m) {		

		if (browser=="IE")  {

		document.all[m].style.background="#bcb162";

		document.all[m].style.color="#ffffff";

		document.all[m].style.fontWeight="bold";

		}

		if (browser=="NS") {

		document.layers[img].background="#bcb162";

		document.layers[img].color="#ffffff";

		}

		}

		

function liteoff2(m) {

		if (browser=="IE") {

		document.all[m].style.background="#ffffff";

		document.all[m].style.color="#bcb162";

		document.all[m].style.fontWeight="bold";

		}

		if (browser=="NS") {

		document.layers[img].background="#ffffff";

		document.layers[img].color="#bcb162";

		}

		return;

		}



function liteonsub(m) {		

		if (browser=="IE")  {

		document.all[m].style.background="#3399ff";

		document.all[m].style.color="#ffffff";

		document.all[m].style.fontWeight="bold";

		}

		if (browser=="NS") {

		document.layers[img].background="#3399ff";

		document.layers[img].color="#ffffff";

		}

		}

				

function liteoff(m) {

		if (browser=="IE") {

		document.all[m].style.background="#ffffff";

		document.all[m].style.color="#3399ff";

		document.all[m].style.fontWeight="normal";

		}

		if (browser=="NS") {

		document.layers[img].background="#ffffff";

		document.layers[img].color="#3399ff";

		}

		return;

		}

		



//Zoom Control



function zoomplus() {

		if (vzoom < 5.1) {

		vzoom = vzoom+5.0;

		photo2.style.zoom= vzoom;

		return;

		}

		}

		

function zoomminus() {

		if (vzoom > 5.1) {

		vzoom = vzoom-5.0;

		photo2.style.zoom= vzoom;

		}

		return;

		}		