/*****************************************
JavaScript For sitemain.aspx page
*****************************************/
function shopcart(){
	document.location.href = "shopcart.aspx";
}
function showdetails(sitemid){
	document.location.href = "sitemaindetail.aspx?id=" + sitemid;
}
function showdetails2(sitemid){
	document.location.href = "sitemaindetail.aspx?id=" + sitemid + "&multi=1";
}
function addtocart(sitemid){
	document.location.href = "shopcartproc.aspx?id=" + sitemid;
}
function addtocart2(i){
	var ctrl = document.getElementById("itemid" + i);
	if (ctrl.value == "-1"){
		alert("Item Not Currently Available");
		return;}
	document.location.href = "shopcartproc.aspx?id=" + ctrl.value;
}
function setstart(){
	var c = parent.sidewin.document.getElementById("txtsearch");
	if (c != null){
		c.value = "";}
}
