
// Création de la frame

function frame(url,menu)
{

var deb="<html><head><title>Le Petit Bimondien</title></head>";
var frameset="<frameset rows='*,52' frameborder='0' framespacing='0' border='0'>";
var frame1="<frame name='frameh' src='" + url + "' marginwidth='0' marginheight='0' frameborder='No' scrolling='auto' noresize>";
var frame2="<frame name='menu' src='" + menu + "' marginwidth='0' marginheight='0' scrolling='Auto' frameborder='No' noresize>";
var fin="</frameset></html>";
var bim = deb+frameset+frame1+frame2+fin;
parent.document.write(bim);

}

// Evite l'erreur du portail

function stoperror()
{
return true;
}
window.onerror=stoperror;


// Ouverture du popup newsletter
function news()
{
window.open("http://ptitbim.bimondiens.com/newsmini.html","newsletter","height=200,width=400,scrollbars=no");
}



