function resolution() {
var correctwidth=1024;
var correctheight=768;
//alert(screen.width);
	if (screen.width <= correctwidth || screen.height <= correctheight)
	{
		document.write("<div style='width:820;height:370;background-color: #ffffff;overflow:auto;border:1px'>");
	}
	else
	{
		document.write("<div style='width:820;height:600;background-color: #ffffff;overflow:auto;border:1px'>");
	}

}