// Changes the text of the specified id.
function SetText(id,newtext)
{
	document.getElementById(id).innerHTML=newtext;
}

// Clears any text in the id.
function ClearText(id)
{
	document.getElementById(id).innerHTML='';
}

// Shows a pdf in a new popup window.
function ShowPDF(file)
{
	random_num = (Math.round((Math.random()*10000)+1))

	window.open("./assets/pdfs/"+file,random_num,"width=800,height=600,resizable=yes");
}

// Shows cust info sheet in a new popup window.
function ShowCustomerInfoSheet(file)
{
	random_num = (Math.round((Math.random()*10000)+1))

	window.open("./assets/infosheets/"+file,random_num,"width=800,height=600,resizable=yes");
}

function ShowEmbeddedVideo(file)
{
	random_num = (Math.round((Math.random()*10000)+1))

	window.open(file,random_num,"width=430,height=350,resizable=yes");
}

