
//----function for getting the values of size and color in the multiple item page.

function redirect()
{

var id=document.getElementById('currID').value;
var size=document.getElementById('size').value;
var color=document.getElementById('color').value;
var url="addToCart.php?action=add";
url=url+"&ID="+id+"&Size="+size+"&Color="+color;
window.location=url;

}

//-------function for getting the values of size and color in the details page

function redirectURL(Count)
{

var ids='ID'+Count;
var id=document.getElementById(ids).value;
var size=document.getElementById('size'+Count).value;
var color=document.getElementById('color'+Count).value;
var url="addToCart.php?action=add";
url=url+"&ID="+id+"&Size="+size+"&Color="+color;
window.location=url;
}

function OpenWindow(imgName){
//alert(imgName);
//alert("width=350,height=350,scrollbars=yes");
window.open("image.php?pic="+imgName,'',"width=350,height=350,scrollbars=yes");

}
