function preload_images() 
{
	var the_document = document; 
	
	if(the_document.images)
	{ 
		if (!the_document.the_images) 
		{
			the_document.the_images = new Array();
		}
   
		var i;
		var num_images = the_document.the_images.length;
		var args = preload_images.arguments;

		for(i = 0; i < args.length; i++)
		{
			if (args[i].indexOf("#") != 0)
			{ 
				the_document.the_images[num_images] = new Image;
				
				the_document.the_images[num_images++].src = args[i];
			}
		}
	}
}
function bgcolor(id,color)
{
	document.getElementById(id).style.backgroundColor = color;
}

function rollover(id,color)
{
	document.getElementById(id).style.color = color;
}

function submit_button()
{
	var message = confirm("Are you sure you wish to remove your details?");

	if (message)
		return true ;
	else
		return false ;
}
																		
function addFavorite(url, title)
{
	if (document.all)
	window.external.AddFavorite(url,title)
}

function leave()
{
	win2 = window.open('http://clkuk.tradedoubler.com/click?p=20642&a=942112&g=741815');
	win2.blur();
	window.focus();
}
