﻿var WebEngine = new Object();

WebEngine.url = 'calculator.aspx';

WebEngine.wrapper = 'calculator';


WebEngine.active_select = '';
WebEngine.productID =0;

var load_check;
var listobj;


/**
 *
 * function bind_parameter()
 *
 * @param value the select order number.
 *
 */ 
 

WebEngine.nextone=function()
{
    window.location.href = "quantity.aspx?designid=1";
}


WebEngine.load = function()
{
   $("homeSlogan").innerHTML = "<b>Start Here</b>";
}

WebEngine.getCalculator = function(content_id){
      
    

    new Ajax.Request(WebEngine.url, { method:'post' ,parameters: {action: 'get_calculator', contentId:content_id }, onSuccess:WebEngine.get_calculator_callback });

}



WebEngine.onFailure = function()
{
    alert("Transfer failure.");
}

Event.observe(window,"load",WebEngine.load);
