var woeDisplayOtherState = "Off"; function woeDisplayOther() { if (woeDisplayOtherState != "") { document.getElementById("woeOtherEnhancementsBody").style.display = 'block'; document.getElementById("woeOtherEnhancementsH2").className = "woeOtherEnhancementsH2On"; woeDisplayOtherState = ""; } else { document.getElementById("woeOtherEnhancementsBody").style.display = 'none'; document.getElementById("woeOtherEnhancementsH2").className = "woeOtherEnhancementsH2Off"; woeDisplayOtherState = "Off"; } } var woeDisplayPhotoState = "Off"; function woeDisplayPhoto() { if (woeDisplayPhotoState != "") { document.getElementById("woeAddPhotosBody").style.display = 'block'; document.getElementById("woePhotoEnhancementsH2").className = "woePhotoEnhancementsH2On"; woeDisplayPhotoState = ""; } else { document.getElementById("woeAddPhotosBody").style.display = 'none'; document.getElementById("woePhotoEnhancementsH2").className = "woePhotoEnhancementsH2Off"; woeDisplayPhotoState = "Off"; } } function woeShowCreateProfile() { document.getElementById("woeCreateNewAccountBox").style.display = 'block'; document.getElementById("woeExisitingCusotmerLoginBox").style.display = 'none'; } function woeShowLogin() { document.getElementById("woeExisitingCusotmerLoginBox").style.display = 'block'; document.getElementById("woeCreateNewAccountBox").style.display = 'none'; } var woeDisplayPreviewState = "Off"; function woeDisplayPreview() { if (woeDisplayPreviewState != "") { document.getElementById("woePreviewBody").style.display = 'block'; document.getElementById("woePreviewH2").className = "woePreviewH2On"; woeDisplayPreviewState = ""; } else { document.getElementById("woePreviewBody").style.display = 'none'; document.getElementById("woePreviewH2").className = "woePreviewH2Off"; woeDisplayPreviewState = "Off"; } }