$(document).ready(function(){
	$('#scode').focus(function(){
		if($(this).attr('value') == 'Existing Support Code?')
		{
			$(this).attr('value','');
		}
	}).blur(function(){
		if($(this).attr('value') == '')
		{
			$(this).attr('value','Existing Support Code?');
		}
	})
})

function DownloadSB(type)
{
	if(SupportCode.length == 0)
	{
		SupportCode = $('machine-code').text();
	}
	window.location = '/?download=' + type + '&scode=' + SupportCode;
}