function DebugOpen()
{
	dbg = document.getElementById('Debug');
	dbg.style.height = '20px';
}

function DebugClose()
{
	dbg = document.getElementById('Debug');
	dbg.style.height = '5px';
}

function CopyPublishingCode(textarea_number)
{
	if(textarea_number == 1)
	{
		copiedtext = document.bogusform.publishing_code_1.createTextRange();
	}
	if(textarea_number == 2)
	{
		copiedtext = document.bogusform.publishing_code_2.createTextRange();
	}

	copiedtext.execCommand("Copy");
	alert("Publishing code has been copied to the clipboard. You may now paste it (CTRL+V) into the content of your site!");
}


function newImage(arg) 
{
	if (document.images) 
	{
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages(arg1, arg2) 
{
	if (document.images && (preloadFlag == true))
	{
		a = document.getElementById(arg1);
		a.src = arg2;
	}
}

var preloadFlag = false;

function preloadImages() 
{
	if (document.images) 
	{
		contacta = newImage("/img/contact_f2.gif");
		faqa = newImage("/img/faq_f2.gif");
		homea = newImage("/img/home_f2.gif");
		logina = newImage("/img/login_f2.gif");
		purchasea = newImage("/img/purchase_f2.gif");
		benefitsa = newImage("/img/benefits_f2.gif");
		preloadFlag = true;
	}
}

// preload menu messages
preloadImages();