function popup(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function RSS(theURL,winName,features) 
{
    window.open('http://www.homebizhearts.com/what-is-rss.html','RSS','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=520,height=600');
}

function PP(theURL,winName,features) 
{
    window.open('http://www.homebizhearts.com/privacy.html','PP','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=520,height=600');
}

function BM(theURL,winName,features) 
{
    window.open('http://www.addtobookmarks.com/socialbookmarking.htm','BM','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=770,height=500');
}

function Zeit() {
  var Jetzt = new Date();
  var Monat = Jetzt.getMonth() + 1;
  var Tag = Jetzt.getDate();
  var Jahr = Jetzt.getYear();
  if (Jahr < 999)
    Jahr += 1900;
  var Vormon = ((Monat < 10) ? "0" : "");
  var Vortag = ((Tag < 10) ? "/0" : "/");
  var Datum = Vormon + Monat + Vortag + Tag + "/" + Jahr;
  document.write("(" + Datum + ")" )
}

function Datum() {
var today = new Date()
var year = today.getYear()
if (year < 1900)
{
year = year + 1900;
}
document.write("2001 - " + year)
}

function Today() {
  var Jetzt = new Date();
  var Jahr = Jetzt.getFullYear();
  var Monat = Jetzt.getMonth() + 1;
  var Tag = Jetzt.getDate();
  document.write(Monat+"/"+Tag+"/"+Jahr)
}

// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
function Today() {
var now = new Date();
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}
today =  days[now.getDay()] + ", " +
              months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear()));
document.write(today)
}

setTimeout("if (window != top) top.location.href = location.href;",3000);
