
function checkstock(a)
{
var size2 = new Array();
size2=a.split("-");
size3=size2[1];

if (size3==0 || size3==00)
{

document.outstock.style.visibility= "visible";
document.getElementById("add").style.display ='none' ;
}
else
{
document.outstock.style.visibility= "hidden";
document.getElementById("add").style.display ='' ;
}

}
function displaytstck()
{
//document.getElementById("outstock").style.display ='none';
//alert(welcome);
}

function open_window(link,w,h)
	{
		
		var win = "width="+w+",height="+h+",menubar=no,location=center,resizable=yes,scrollbars=1";
		newWin = window.open(link,'newWin',win);
	}

	















