function getDocHeight() {
    var D = document;
    return Math.max(
        Math.max(D.body.scrollHeight, D.documentElement.scrollHeight),
        Math.max(D.body.offsetHeight, D.documentElement.offsetHeight),
        Math.max(D.body.clientHeight, D.documentElement.clientHeight)
    );
}
function ChangeMain() {
	if (window.opera)
	{
		document.getElementById("content_container").style.height = (getDocHeight() - 325)+"px";	
	}
	else
	{
		document.getElementById("content_container").style.height = (getDocHeight() - 225)+"px";			
	}
}
function OpenVenster(Locatie,Width,Height,Top,Left) {
	var settings = 'height=' + Height + ',';
	settings += 'width=' + Width + ',';
	settings += 'top=' + Top + ',';
	settings += 'left=' + Left;
	window.open(Locatie, "Speelmans", settings);
}
function OpenVensterGoogle(Width,Height,Top,Left) {
	var settings = 'height=' + Height + ',';
	settings += 'width=' + Width + ',';
	settings += 'top=' + Top + ',';
	settings += 'left=' + Left;
	window.open("http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Peperstraat+3,+Oss,+The+Netherlands&aq=0&sll=52.132633,5.291266&sspn=5.733677,16.907959&ie=UTF8&hq=&hnear=Peperstraat+3,+Oss,+Noord-Brabant,+The+Netherlands&ll=51.769769,5.524664&spn=0.002822,0.008256&z=18", "Sand bikeparts", settings);
}
window.onresize = ChangeMain;

