var __mvResolution = 800;

function __checkResolution() {
	var screen_height = (document.body.clientHeight) ?  document.body.clientHeight : window.innerHeight ;
	var screen_width = (document.body.clientWidth) ?  document.body.clientWidth : window.innerWidth ;
	//alert(screen_height + ", " +screen_width)
	//var buffer = (document.all || document.layers ||documentGetElementByID) ? 30 : 48;
	if (screen_width >= 900) {
		__mvResolution = 1024
		screen_width = 1024;
		screen_height = 768;
		// var window_width = 1024-12;
	    // var window_height = 768-buffer;
	    // var window_top = 0;
	    // var window_left = 0;
	    // window.open(Big,'','resizable=no,status=yes,width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + '');

	} else {
		__mvResolution = 800
		screen_width = 800;
		screen_height = 600;
		//var window_width =  800-12;
	    //var window_height = 600-buffer;
		//var window_top = 0;
	    //var window_left = 0;
	    //window.open(Medium,'','resizable=no,status=yes,width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + '');

	}
}

function resWrite(p, g) {
	if (__mvResolution == 800) {
		document.write(p);
	} else {
		document.write(g);
	}
}

__checkResolution();
