function checkRes(){

	var tableString;
	
	if((screen.width > 1024) && (screen.height > 768)){
		tableString = '<table width="70%" align="center" border="1" bordercolor="#000000" bgcolor="#ffffff" cellpadding="2" cellspacing="2">';
	}else{
		tableString = '<table width="95%" align="center" border="1" bordercolor="#000000" bgcolor="#ffffff" cellpadding="2" cellspacing="2">';
	}

	return tableString;
}