<!--

//*****************************************
// Blending Image Slide Show Script- 
// © Dynamic Drive (www.dynamicdrive.com)
// For full source code, visit http://www.dynamicdrive.com/
//*****************************************

//specify interval between slide (in mili seconds)
var slidespeed=3000

//specify images
var slideimages=new Array("/images/storefront/viral.jpg","/images/storefront/cr7400.jpg","/images/storefront/iluma.jpg","/images/storefront/6100.jpg","/images/storefront/3sensor.jpg")

//specify corresponding links
var slidelinks=new Array("http://www.dentalcompare.com/video_view.asp?videoid=131","http://www.dentalcompare.com/details/6169/KODAK-CR-7400-Digital-Radiography-System.html","http://www.dentalcompare.com/details/7881/ILUMA-Cone-Beam-CT-Scanner.html","http://www.dentalcompare.com/details/7383/RVG-6100-Digital-Radiography-System.html","http://www.dentalcompare.com/details/7383/RVG-6100-Digital-Radiography-System.html")

var newwindow=1 //open links in new window? 1=yes, 0=no

var imageholder=new Array()
var ie=document.all
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
if (newwindow)
window.open(slidelinks[whichlink])
else
window.location=slidelinks[whichlink]
}

function redirectLead() 
	{
				
		var obj = document.forms[0].productid;
		var objid = obj.options[obj.selectedIndex].value;
		
		var objPath = window.location.host;
		var objURL = "http://" + objPath + "/moreinfo.asp?ltid=40&type=product&id=" + objid;

		if(objid != 0)
			window.open(objURL, "", "width=1000,height=700,copyhistory=no,resizable=1,scrollbars=1");
		else
			alert("Please select a product to request information for");
	}

//-->
