
// PREGNANCY WEIGHT FORM - OPEN AND CLOSE NEW WINDOW SCRIPT 

function sendme() 
{ 
    window.open("","myNewWin","width=400,height=250,toolbar=0"); 
}

function closeme() 
{ 
    window.close("","myNewWin"); 
}

// END


// HIDE AND SHOW DIVS SCRIPT

function resettoggle() {
var e = document.getElementById('pregnant');
e.style.display = 'none';
}

function resettoggle2() {
var e = document.getElementById('breastfeeding');
e.style.display = 'none';
}
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'none')
e.style.display = 'block';
else
e.style.display = 'none';
}

// END
