//Glassinside javascript file 1.0
		
function DeHide(divid)
{
	
	if(document.getElementById(divid).style.display == "none")
	{
		document.getElementById(divid).style.display="inline";
	}
	else
	{
		document.getElementById(divid).style.display="none";
	}
}

function Popup(url, width, height, left,top)
{
	//instellen left default waarde
	if(left == 'undefined')
	{
		left = 0;
	}
	//instellen voor de top default waarde
	if(top == 'undefined')
	{
		top = 0;
	}
	newwindow=window.open(url,"Bewerkbedrijf","menubar=no,resizable=yes, scrollbars=yes, status=no, toolbar=no,width=" + width +",height=" + height +",left=" + left + ",top=" + top + "");
  if (window.focus) {newwindow.focus()}
}

function BevestigingPopup(text)
{
	confirmbox=confirm(text);
	if(confirmbox ==true)
	{
		return true;
	}
	else
	{
		return false;
	}
}

function ChangeContent(content)
{ 
  //Vervangt de content van de informatie over een product/categorie
  var oldcontent = document.getElementById("productinfo");
  oldcontent.innerHTML = content;
}

function SendText(text, object)
{
	//ophalen van het object
	var oldobject = document.getElementById(object);
	oldobject.value=text;
}

function UpdateSource(source)
{
  
  var container = document.getElementById('imgcontainer');
  container.src = source;
}

