window.onload = function() {
	if(window.event && (document.getElementById('logo-print').offsetHeight == 0))
	{
		maxWidth();
		window.onresize = function(){maxWidth()}	
	}
}
function maxWidth() {
	var w = (document.documentElement.offsetWidth < 900)? '100%' : '900px';
	var elem = document.getElementById('frame');
	elem.style.width = w;
}