﻿function setDimensions() {             
    h = Spreadshop.document.body.scrollHeight;                        
    w = Spreadshop.document.body.scrollWidth;            
    document.getElementById("Spreadshop").style.height = h;            
    document.getElementById("Spreadshop").style.width = w;         
}

function goDesigner(anchor) {
	window.location.hash = '#'+anchor;
	return false;
}

window.onload = function(){
	var external = document.getElementsByClassName('extern');
	for(var i = 0; i < external.length; i++) {
		external[i].onclick = function() {
			window.open(this.href);
			return false;
		};
	}
};