// JavaScript Document

/* Initialize config vars as global object */
_W2C_ = new _W2C_;

function W2C_load(){
	var model = new W2C_Model();
	var view =  new W2C_View(model, new W2C_Controller(model));
	return view
}

var WebToCall = W2C_load();
WebToCall.show();
