//
//
var cxnx_calendar = 1,
    cxnx_availability = 2,
    cxnx_pricing = 3,
    cxnx_both = 4;

function cxnx_get(){
  if(!cxnx_opts){
    alert('options not defined!');
	return;
  }
  var url,container,c,w,h;
  url = 'http://www.chamonix.net/_external/';
  // set iframe styles & plugin type
  switch(cxnx_opts.type){
	case 1:
	  w = 180; h = 130;
	  url += 'calendar,';
	  break;
	case 2:
	  w = 510; h = 300;
	  url += 'fpa/availability,';
	  break;
	case 3:
	  w = 310; h = 300;
	  url += 'fpa/pricing,';
	  break;
	case 4:
	  w = 810; h = 300;
	  url += 'fpa/both,';
	  break;
  }
    
  url += cxnx_opts.id;
  
  c = '<style type="text/css">#cnet_iframe{padding:0;margin:0;overflow:visible;border:none;width:'+w+'px;height:'+h+'px;}</style>';
  
  container = '<iframe id="cnet_iframe" src="'+url+'"></iframe>';
  document.write(c);
  document.write(container);
}
