function showCookbook(){
	src_loader='../cookbook/index.asp';
	document.getElementById("container").style.overflow="hidden";
	document.getElementById("container").style.height="100%";
	document.getElementById("container").style.position="relative";
	GB_myShow2('Mirassou.com Cookbook', '../cookbook/index.asp');
	return false;
	
}
GB_myShow2 = function(caption, url, /* optional */ height, width, callback_fn) {
  
   
	var options = {
        caption: caption,
		center_win: true,
        width: width || 900,
        height: height ||500,
        fullscreen: false,
        show_loading: false,
        callback_fn: callback_fn,
		url:url
    }
    var win2 = new GB_Window(options);
	return win2.show(url);
}