currentwidth = 650;
currentheight = 550;
function slideshowResize(amount) {
	var e = document.getElementById("playerFrame");
	currentwidth += amount + amount/3;
	currentheight += amount;
	if (e.style) e = e.style;
	e.width = currentwidth + "px";
	e.height = currentheight + "px"; 
}

