function startit(){
document.write('<link rel="stylesheet" type="text/css" href="http://www.richardhoughton.com/forms/styles/calmarstyle.css" />')
document.write('<div id="hi"></div>');
hideit();
}
function hideit(){
labamba = document.getElementById('hi');
originalNotice = 'Richard Houghton Law is currently offering a form generated <b>Prenuptial Agreement</b> that can ben downloaded immediately after purchase for $39. This agreement is available in a traditional format as well as a same-sex variation.<div class="buttonwrap"><span class="button" onclick="changelocation()">Traditional Agreement</span><span class="button" onclick="sschangelocation()">Same-Sex Agreement</span></div>';
labamba.innerHTML = originalNotice;
}
window.onload = startit();
function changeitup(){
labamba.style.fontWeight = "normal";
finalNotice = '//data currently not available//';
labamba.innerHTML = finalNotice;
}
function changelocation(){
location.href = "http://www.richardhoughton.com/forms/purchase.agreement/prenuptial"
}
function sschangelocation(){
location.href = "http://www.richardhoughton.com/forms/purchase.agreement/ssprenuptial"
}

function windol(){
openCenterWin("http://richardhoughton.com/forms/preview.agreement/prenuptial",715,500);
}
function openCenterWin( url, theWidth, theHeight){
var theTop=(screen.height/2)-(theHeight/2);
var theLeft=(screen.width/2)-(theWidth/2);
var features=
'height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+",scrollbars=yes";
theWin=window.open(url,'',features);
}