// Basic js functions used throughout site for picture framing and page scrolling

function scrollwindowup() {
	scrollBy (0,-25);
}
function scrollwindowdown() {
	scrollBy (0,1);
}
function picframe(image, caption) {
	if (caption) document.write('<table border=0 cellpadding=0 cellspacing=0><tr><td align="center">');
	document.write('<table border="3" bordercolor="#999900" bordercolordark="#996600" bordercolorlight="#CCCC00" bgcolor="#ff9900"><tr><td><table border="3" bordercolor="#FFFF00" bordercolordark="#FFCC00" bordercolorlight="#FFFF00"><tr><td>' + image + '</td></tr></table></td></tr></table>' );
	if (caption) document.write('<br><span class="caption">' + caption + '</span>"</td></tr></table>' );
}
function picfrtop() {
	document.write('<table border="3" bordercolor="#006699" bordercolordark="#0033cc" bordercolorlight="#0000CC" bgcolor="#ccffcc"><tr><td><table border="3" bordercolor="#00aa00" bordercolordark="#009900" bordercolorlight="#00cc00"><tr><td>');
}
function picfrbtm() {
	document.write( '</td></tr></table></td></tr></table>' );
}
function picframegilt(image, alignment) {
	document.write('<table cellpadding="0" cellspacing="0" border="0" align="' + alignment + '">' );
	document.write('<tr><td width="29" height="29" background="http://middlepath.com.au/img/fr_tlcnr.gif"><img src="http://middlepath.com.au/img/spacer.gif" width="29" height="29"></td>	<td height="29" background="http://middlepath.com.au/img/fr_top.gif"></td>	<td width="29" height="29" background="http://middlepath.com.au/img/fr_trcnr.gif"><img src="http://middlepath.com.au/img/spacer.gif" width="29" height="29"></td></tr>' );
	document.write('<tr><td width="29" background="http://middlepath.com.au/img/fr_lft.gif"></td><td>' );
	document.write(image );
	document.write('</td><td width="29"  background="http://middlepath.com.au/img/fr_rgt.gif"></td></tr>' );
	document.write('<tr><td width="29" height="29"  background="http://middlepath.com.au/img/fr_blcnr.gif"><img src="http://middlepath.com.au/img/spacer.gif" width="29" height="29"></td><td height="29" background="http://middlepath.com.au/img/fr_btm.gif"></td><td width="29" height="29" background="http://middlepath.com.au/img/fr_brcnr.gif"><img src="http://middlepath.com.au/img/spacer.gif" width="29" height="29"></td></tr>' );
	document.write('</table>' );
}
// insert email link
function email_link(text,subject,body)	{
	document.write ( '<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#112;&#64;&#109;&#105;&#100;&#100;&#108;&#101;&#112;&#97;&#116;&#104;&#46;&#99;&#111;&#109;&#46;&#97;&#117;' );
	document.write ( '?subject=' + subject + '&body=' + body + '">' + text + '</a>' ); 
}
//  insert workshop details in table once button clicked on workshop pages
function filldetails_old()	{
	document.all.datecell.innerHTML	= dates_vb[0] + "<br>" + dates_vb[1] + "<br>" + dates_vb[2];
	document.all.requirements.innerHTML	= requirements['vb'];	
	document.all.costcell.innerHTML	= "AUD$" + workshop_costs['vb'] + ":00";
}
