<!-- Begin

// SIDEBAR FLASH CHANGER OPTIONS

//  use only lowercase on options


var showsflash		= "yes"		// SHOW FLASH IMAGE CHANGER | yes | no |
var flashcolor		= "000000"	// BACKGROUND COLOR (edit css ban-area-home)
var flashwC		= "750"		// WIDTH OF THE FLASH CHANGER
var flashhC		= "350"		// HEIGHT OF THE FLASH CHANGER

var flashfile		= "imagechanger_home"	// FLASH FILE NAME HOMEPAGE (NO .swf)





// COPYRIGHT 2010 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE



// FLASH CHANGER
   if (showsflash == "yes") {
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" id="'+flashfile+'">');
document.write('<PARAM NAME="movie" VALUE="'+flashfile+'.swf">');
document.write('<PARAM NAME="quality" VALUE="high">');
document.write('<PARAM NAME="bgcolor" VALUE="#'+flashcolor+'">');
document.write('<PARAM NAME="wmode" VALUE="transparent">');
document.write('<EMBED src="'+flashfile+'.swf" quality="high" wmode="transparent" bgcolor="#'+flashcolor+'" WIDTH="'+flashwC+'" HEIGHT="'+flashhC+'" NAME="'+flashfile+'" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT><br>');
}
   if (showsflash == "no") {
document.write('<img src="flash/home-image1.jpg" border="0"><br>');
}



//  End -->