/*Print JS Start*/
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var message = "Print this Page";
function printpage(title,url) {
window.print(); 
}
/*Print JS end*/


/*Bookmark JS Start*/

function addBookmark(title,url) { 
if (window.sidebar) { 
window.sidebar.addPanel(title, url,""); 
} else if( document.all ) {
window.external.AddFavorite( url, title);
} else if( window.opera && window.print ) {
return true; 
}}

/*Bookmark JS end*/


/*selectColor JS Start*/
 function selectColor()
 {
 document.getElementById('cosw').style.display = "block";
 document.getElementById('cosw').style.visibility = "visible";
document.getElementById('cosw').style.width = "740px";

 }
 
/*selectColor JS end*/

/*checkQuantity JS Start*/
function checkQuantity(minqty)
{
 var qty; qty =document.orderform.vwquantity.value;
 if(qty<minqty)
 {
  alert("Quantity must be more than or equal to "+minqty);
  return false;
 }
}
 
/*checkQuantity JS end*/
