// => Opens image into popup
function PopupPic(sPicURL) {
	window.open("popup.html?" + sPicURL, "", "resizable=1,top=0,left=0,height=200,width=200");
}

function PopupFitPic(sPicURL) {
	window.open("imagePopup.html?" + sPicURL, "", "resizable=1,top=0,left=0,height=200,width=200");
}

// => Opens register bike form popup
function RegisterBike() {
	window.open("registerBike.php", "", "resizable=1,scrollbars=1,top=100,left=100,height=800,width=350");
}

/*function figureOutSize(brand) {
	var leftSide = document.getElementById('contentAreaLeftPanel').offsetHeight;
	var rightSide = document.getElementById('contentAreaRightPanel').offsetHeight;
	
	alert("left: " + leftSide + " | right: " + rightSide + " | brand: " + brand);
}*/