// JavaScript Document
function generatecode()
{
 var code='';
 var astyle='';
 var textcolor=document.getElementById('textcolorinput').value;
 var textcode='';
 var bgcode='';
 var spacer='?';
 var bgcolor=document.getElementById('bgcolorinput').value;
 if(textcolor=='Default')
 {
  textcolor='';
 }
 if(bgcolor=='Default')
 {
  bgcolor='';
 }
 if(textcolor!='')
 {
  astyle=' style="color:'+textcolor+'"; ';
  textcode=spacer+'textcolor='+textcolor.replace('#','');
  spacer='&';
 }
 if(bgcolor!='')
 {
  bgcode=spacer+'bgcolor='+bgcolor.replace('#','');
 }
 var code='<div id="mortgage-calculator" style="text-align:center; width:235px;height:235px; padding:5px;" >\n<a '+astyle+' href="http://www.sixonefive.net/calculator/index.php">Morgage Calculator</a>\n<iframe src="http://www.sixonefive.net/calculator/calculator.php'+textcode+bgcode+'" width="550" frameborder="0" allowtransparency="true"></iframe>\n</div>';
 document.getElementById('codesnippit').value=code;
}

function resetcode()
{
  document.getElementById('textcolorinput').value='Default';
  document.getElementById('bgcolorinput').value='Default';
  var code='<div id="mortgage-calculator" style="text-align:center; width:235px;height:235px; padding:5px;" >\n<a href="http://www.sixonefive.net/calculator/index.php">Morgage Calculator</a>\n<iframe src="http://www.sixonefive.net/calculator/calculator.php" width="550" frameborder="0" allowtransparency="true"></iframe>\n</div>';
  document.getElementById('codesnippit').value=code;
}
