// JavaScript Document

function window_max(theURL) {
  window.open(theURL,'zoom','fullscreen=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes');
}

function karenalder_window(URLnormal, URLscale) {
	
	if (screen.height < 1000){
		window.open(URLscale,'zoom','height=' + screen.height + ',width=' + screen.width + ',fullscreen=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=0,top=0');
	}
	
	else {
		window.open(URLnormal,'zoom','height=' + screen.height + ',width=' + screen.width + ',fullscreen=yes,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=0,top=0');
	}
	
}