function todaydate(){
	D = new Date();
	yy = D.getYear();
	mt = D.getMonth() + 1;
	dd = D.getDate();
	whatmonth = "blank"; 

	if (mt == 1){whatmonth = "January";}
	if (mt == 2){whatmonth = "February";}
	if (mt == 3){whatmonth = "March";}
	if (mt == 4){whatmonth = "April";}
	if (mt == 5){whatmonth = "May";}
	if (mt == 6){whatmonth = "June";}
	if (mt == 7){whatmonth = "July";}
	if (mt == 8){whatmonth = "August";}
	if (mt == 9){whatmonth = "September";}
	if (mt == 10){whatmonth = "October";}
	if (mt == 11){whatmonth = "November";}
	if (mt == 12){whatmonth = "December";}
	document.write(whatmonth + " " + dd + ", " + yy);
}


function copyright(){
	document.write('<span class="copyright">All Contents Copyright © 2000-2009  - Avi Goldyne - All rights reserved.</span>');
}

function display_logo(){
	document.write('<a href="../index.html"><img src="../graphics/structure/logo.jpg" width="151" height="79" alt="" border="0"></a>');
}

function display_logo_second(){
	document.write('<a href="../../index.html"><img src="../../graphics/structure/logo.jpg" width="151" height="79" alt="" border="0"></a>');
}

function display_logo_home(){
	document.write('<a href="index.html"><img src="graphics/structure/logo.jpg" width="151" height="79" alt="" border="0"></a>');
}

function loadframe(daurl,daframe){
	parent.document.getElementById(daframe).src = daurl;
}
