// 
// Byonics.com Javascript
// 

function Set_Over(img) 
{
	if (document.images) {
	   document[img].src = '../' + img + '_over.gif';
	}
}

function Clear_Over(img) 
{
	if (document.images) {
	   document[img].src = '../' + img + '.gif';
	}
}

function Set_Over_Root(img) 
{
	if (document.images) {
	   document[img].src = img + '_over.gif';
	}
}

function Clear_Over_Root(img) 
{
	if (document.images) {
	   document[img].src = img + '.gif';
	}
}

function Make_Email_Link(domain, name) 
{
   text = name + '\@' + domain;
//   document.write('<A HREF=\"mailto:' + text + '\">' + text + "</A>" );
   document.write('<A HREF=\"/contact.php\">Byonics</A>' );
}

function Make_Email_Link_Subject(domain, name, subject) 
{
   text = name + '\@' + domain;
//   document.write('<A HREF=\"mailto:' + text + '?subject=' + subject + '\">' + text + "</A>" );
   document.write('<A HREF=\"/contact.php\">Byonics</A>' );
}

function Make_Paypal_Email() 
{
   document.write('<input type=\"hidden\" name=\"business\" value=\"paypal' );
   document.write('@byonics.com\">' );
}

