function MoverQuote(mover_id)
{
  var w = 545;
  var h = 550;
  window.open('self_quote.php?mover_submit=yes&mover_id='+mover_id+'','QWinFull','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h+'');
}
function OpenQuoteWindow(quote)
{
  var w = 545;
  var h = 550;

  if(quote==true)
  {
    window.open('self_quote.php','QWinFull','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h+'');
  }

  if(quote==false)
  {
    window.open('full_quote.php','QWinSelf','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h+'');
  }
}
