function showPrintworksample()
{
	var printSelect =  window.document.getElementById("print");
	window.location.replace('/arbeitsproben/' + printSelect.value);
}

function showWebdesignworksample()
{
	var webdesignSelect = window.document.getElementById("webdesign");
	window.location.replace('/arbeitsproben/' + webdesignSelect.value);
}

function visible(id)
{
	var divElement = window.document.getElementById("worksample"+id);
	if(divElement.style.display == "none")
	{
		divElement.style.display = "block";
	}
	else
	{
		divElement.style.display = "none";
	}
}

function sendSubmit(formid)
{
	var form = document.getElementById('formid');	
	form.submit();
}

function download($file)
{
    window.location.href = $file;
}