function setWindowLocation(value) {
	window.location.href = value;
}

var mw = 780;
var mh = 480;

function checkSize() {
		
	var w = 0;
	var h = 0;
		
  if(document.body && document.body.clientWidth) {
		
    w = document.body.clientWidth;
    h = document.body.clientHeight;
		
  } else if(window.outerWidth) {
		
    h = window.outerWidth;
    w = window.outerHeight;
		
	} else {
		return;
	}
		
	var e = getElement("content", true);
		
	if(e == null)
		return;
		
	if(w < mw)
		e.width = mw;
	else
		e.width = "100%";
		
	if(h < mh)
		e.height = mh;
	else
		e.height = "100%";
		
}

function getElement(id, style) {
	var r;
	if(document.getElementById)
		r = document.getElementById(id);
	else if(document.all)
		r = document.all[id];
	return r != null & style ? r.style : r ;
}

window.onresize = checkSize;