// JavaScript Document
if (
		(typeof Prototype=='undefined') ||
		(typeof Element == 'undefined') ||
		(typeof Element.Methods=='undefined') ||
		parseFloat(Prototype.Version.split(".")[0] + "." + Prototype.Version.split(".")[1]) < 1.5
		)
	throw("FenetreGC exige le framework Prototype version >= 1.5.0");
	
makeLinkContent = Class.create();
makeLinkContent.prototype = {

  initialize: function(){
    this.win = Windows.getFocusedWindow();
  },
  makeContentInto: function(url){
  alert(url);
    /*var contenu =  new dataRetriever(sUrl);
    valContenu = contenu.retrieve('html');
    var conteneur = $(this.win.getId() + "_table_content");
    conteneur.replace(valContenu);*/
  }
}

