/*
	==================================================
	productlist.js set the productList's color 
	==================================================
*/


var selectColor = "";   

 function setDivSelect(color,sku_Value){
     selectColor= color;                 
     var sku_hidden= document.getElementById("sku"); 
     sku_hidden.value=sku_Value;
}

function setDivBackGround(color){
   var colorPanel=document.getElementById("showColorPanel");
  colorPanel.style.background=color;
}

function outDivBackGround(){
  var colorPanel=document.getElementById("showColorPanel");
if(selectColor != "")
{
  colorPanel.style.background=selectColor;  
}
else
{
  colorPanel.style.background='#E5E6E8';
}
}

function openpopupwindows(add){	
		winpops=window.open(add,"","width=650,height=700,scrollbars,resizable,")
	}