// JavaScript Document
	var status=null;

	
function selectme(id)
{
	if (status==null)
	{
	window.document.getElementById(id).className="picframeselected";
	status=id;
	}
	else
	{
	window.document.getElementById(status).className="picframe";
	window.document.getElementById(id).className="picframeselected";
	status=id;
	}
}

function wrong_ref() {
	alert ("You have not selected a pattern yet! \n You will now be redirected to the selection page.");
	window.location = "www.smartpatterns.com/free";
}

function showbutton()
{
	window.document.getElementById("next").disabled="";
}



