

function showLoginPage()
		{
			var scrWidth = screen.width;
			var scrHeight = screen.height;

			var winWidth = 300;
			var winHeight = 125;
		
			var winLeft = (scrWidth - winWidth)/2;
			var winTop = (scrHeight - winHeight)/2;
		
			var strFeatures = "toolbar=0,location=0,width=" + winWidth + ", height=" + winHeight + ", top=" + winTop + ", left=" + winLeft + ", status=0, scrollbars=0";
			//alert('hi');
			window.open('../Login.aspx', 'Login', strFeatures);

        //window.showModalDialog('../Login.aspx','','dialogWidth:500px;dialogHeight:175px;scroll: No;');
			
		}
		
function addtoCart(partno, desc)
{
    var scrWidth = screen.width;
    var scrHeight = screen.height;

    var winWidth = 500;
    var winHeight = 175;
	
    var winLeft = (scrWidth - winWidth)/2;
    var winTop = (scrHeight - winHeight)/2;
	
    var strFeatures = "toolbar=0,location=0,width=" + winWidth + ", height=" + winHeight + ", top=" + winTop + ", left=" + winLeft + ", status=0, scrollbars=0";
    //alert('../AddPartNumbertoCart.aspx?Partno='+partno+'&Description='+desc);
    window.open('../AddPartNumbertoCart.aspx?Partno='+partno+'&Description='+desc , 'AddtoCart', strFeatures);
    return false;
}
function SpecificPartPrice(partno,splPrice,desc)
{
    var scrWidth = screen.width;
    var scrHeight = screen.height;

    var winWidth = 400;
    var winHeight = 150;
	var winLeft = (scrWidth - winWidth)/2;
    var winTop = (scrHeight - winHeight)/2;
	
    var strFeatures = "toolbar=0,location=0,width=" + winWidth + ", height=" + winHeight + ", top=" + winTop + ", left=" + winLeft + ", status=0, scrollbars=0";
    //alert('../AddPartNumbertoCart.aspx?Partno='+partno+'&Description='+desc);
    window.open('../SpecificSpecialPrice.aspx?Partno='+ partno +'&Price='+ splPrice +'&desc='+ desc,'SpecialPrice',strFeatures);
    //return false;
    
}	
function SpecificPartPriceforKit(partno,splPrice,desc)
{
    var scrWidth = screen.width;
    var scrHeight = screen.height;

    var winWidth = 400;
    var winHeight = 150;
	var winLeft = (scrWidth - winWidth)/2;
    var winTop = (scrHeight - winHeight)/2;
	
    var strFeatures = "toolbar=0,location=0,width=" + winWidth + ", height=" + winHeight + ", top=" + winTop + ", left=" + winLeft + ", status=0, scrollbars=0";
    //alert('../AddPartNumbertoCart.aspx?Partno='+partno+'&Description='+desc);
    window.open('SpecificSpecialPrice.aspx?Partno='+ partno +'&Price='+ splPrice +'&desc='+ desc,'SpecialPrice',strFeatures);
    //return false;
    
}
function BillofMaterial(partno,type)
{
    var scrWidth = screen.width;
    var scrHeight = screen.height;

    var winWidth = 450;
    var winHeight = 550;

    var winLeft = (scrWidth - winWidth)/2;
    var winTop = (scrHeight - winHeight)/2;

    var strFeatures = "toolbar=0,location=0,width=" + winWidth + ", height=" + winHeight + ", top=" + winTop + ", left=" + winLeft + ", status=0, scrollbars=0";
    //var strFeatures = "";
    //alert('../AddPartNumbertoCart.aspx?Partno='+partno+'&Description='+desc);
    window.open('../EngineKitsDetails.aspx?Partno='+partno+'&Type='+type , 'AddtoCart', strFeatures);
    return false;
}

function test()
{
 alert('hi');
}
function editQuantity(order_id)
{
    var scrWidth = screen.width;
    var scrHeight = screen.height;

    var winWidth = 500;
    var winHeight = 175;
	
    var winLeft = (scrWidth - winWidth)/2;
    var winTop = (scrHeight - winHeight)/2;
	
    var strFeatures = "toolbar=0,location=0,width=" + winWidth + ", height=" + winHeight + ", top=" + winTop + ", left=" + winLeft + ", status=0, scrollbars=0";
    //alert('../AddPartNumbertoCart.aspx?Partno='+partno+'&Description='+desc);
    
    window.open('../ShoppingCart/EditCartQuantity.aspx?order_id='+order_id,'EditQuantity','_blank', strFeatures);
    return false;
}	



function bomCart(partno,type,cart)
{
    var scrWidth = screen.width;
    var scrHeight = screen.height;
    //var str = document.getElementById('drpPiston').value;
    var winWidth = 450;
    var winHeight = 200;
	
    var winLeft = (scrWidth - winWidth)/2;
    var winTop = (scrHeight - winHeight)/2;
	 
    var strFeatures = "toolbar=1,location=0,width=" + winWidth + ", height=" + winHeight + ", top=" + winTop + ", left=" + winLeft + ", status=0,  ,scrollbars=0";
    window.open('EngineKitCart.aspx?Partno='+partno+'&Description='+type+'&Size='+cart ,"blank",strFeatures);
    return false;
}

   function Image(path)
		{
			var scrWidth = screen.width;
			var scrHeight = screen.height;

			var winWidth = 250;
			var winHeight = 250;
		
			var winLeft = (scrWidth - winWidth)/2;
			var winTop = (scrHeight - winHeight)/2;
		
			var strFeatures = "toolbar=0,location=0,width=" + winWidth + ", height=" + winHeight + ", top=" + winTop + ", left=" + winLeft + ", status=0, scrollbars=0";
		
			window.open('../DimensionImage.aspx?path='+path, 'AddCart', strFeatures);
			return false;
		}
   
   
   
   
   