 function includeFlash(str, wid, hei ,class_id,class_ver){
 
 document.write("<object classid='"+class_id+"' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='"+class_ver+"' width='"+wid+"' height='"+hei+"'>")
 document.write("<param name='movie' value='/"+str+"'>")
 document.write("<param name='wmode' value='transparent'>")
 document.write("<param name='bgcolor' value='#ffffff'>")
 document.write("<param name='menu' value='false'>")
 document.write("<param name='loop' value='false'>")
 document.write(" <embed src='/"+str+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+wid+"' height='"+hei+"'></embed></object>")
 }
 
 function SwapImage(id, action)
{
	if (action == "over")
	{
		document.getElementById(id + "_img").src = "/Hard-Wood-Floor-Images/" + id + "-main.jpg";
	}
	else if (action == "out")
	{
		document.getElementById(id + "_img").src = "/Hard-Wood-Floor-Images/" + id + "-over.jpg";
	}
}