﻿// JScript File
/*
function openwindow(sPDFfilename) 
{
    var props = 'location=no,menubar=yes,toolbar=yes,height=600,width=800';
    window.open(sPDFfilename,'Imirzian',props,true);
}
*/

function PreLoadImagesRoot(ThemeDir)
{ 
    BlueArrow = new Image();		// Active images
    BlueArrow.src = "images/ArrowBlue.gif"; 

    BlackArrow = new Image();		// InActive images
    BlackArrow.src = "images/ArrowBlack.gif"; 

// HOME Page flipped images
	Mambo75W75Hanim = new Image();		// Active images
	Mambo75W75Hanim.src = "images/Mambo75W75H-anim.gif"; 
	ChaCha75W75Hanim = new Image();		// Active images
	ChaCha75W75Hanim.src = "images/ChaCha75W75H-anim.gif"; 
	Tango75W75Hanim = new Image();		// Active images
	Tango75W75Hanim.src = "images/Tango75W75H-anim.gif"; 
	Foxtrot75W75Hanim = new Image();		// Active images
	Foxtrot75W75Hanim.src = "images/Foxtrot75W75H-anim.gif"; 
	Salsa75W75Hanim = new Image();		// Active images
	Salsa75W75Hanim.src = "images/Salsa75W75H-anim.gif"; 
	Merengue75W75Hanim = new Image();		// Active images
	Merengue75W75Hanim.src = "images/Merengue75W75H-anim.gif"; 
	Waltz75W75Hanim = new Image();		// Active images
	Waltz75W75Hanim.src = "images/Waltz75W75H-anim.gif"; 
	Swing75W75Hanim = new Image();		// Active images
	Swing75W75Hanim.src = "images/Swing75W75H-anim.gif"; 
	Calander50W50Hanim = new Image();		// Active images
	Calander50W50Hanim.src = "images/Calander-50W50H-anim-white.gif"; 


// HOME Page orig Still images
	Mambo75W75Hstill = new Image();		// Active images
	Mambo75W75Hstill.src = "images/Mambo75W75H-still.gif"; 
	ChaCha75W75Hstill = new Image();		// Active images
	ChaCha75W75Hstill.src = "images/ChaCha75W75H-still.gif"; 
	Tango75W75Hstill = new Image();		// Active images
	Tango75W75Hstill.src = "images/Tango75W75H-still.gif"; 
	Foxtrot75W75Hstill = new Image();		// Active images
	Foxtrot75W75Hstill.src = "images/Foxtrot75W75H-still.gif"; 
	Salsa75W75Hstill = new Image();		// Active images
	Salsa75W75Hstill.src = "images/Salsa75W75H-still.gif"; 
	Merengue75W75Hstill = new Image();		// Active images
	Merengue75W75Hstill.src = "images/Merengue75W75H-still.gif"; 
	Waltz75W75Hstill = new Image();		// Active images
	Waltz75W75Hstill.src = "images/Waltz75W75H-still.gif"; 
	Swing75W75Hstill = new Image();		// Active images
	Swing75W75Hstill.src = "images/Swing75W75H-still.gif"; 
	Calander50W50Hstill = new Image();		// Active images
	Calander50W50Hstill.src = "images/Calander-50W50H-still-white.gif";
}
/*
function PreLoadImagesTheme(ThemeDir)
{ 
    BlueArrow = new Image();		// Active images
    BlueArrow.src = ThemeDir + "/images/broyalty75x75homeOff.jpg"; 

    broyalty75x75homeOn = new Image();		// InActive images
    broyalty75x75homeOn.src = ThemeDir + "/images/broyalty75x75homeOn.jpg"; 
}
*/
function imgOn(imgID) 
{
	if (document.images) 
	{
		document.getElementById(imgID).src = eval(imgID + "anim.src");
	}
}

function imgOff(imgID) 
{
	if (document.images) 
	{
		document.getElementById(imgID).src = eval(imgID + "still.src");
	}
}

