var browserCheck = (document.all) ? 1 : 0; // ternary operator statements to check if IE. set 1 if is, set 0 if not.

if( browserCheck > 0 )  // if MSIE is set greater than 0 (e.g. 1)
{
var smallResource="";
smallResource += "<iframe src=\"small-resources.php\" width=\"197\" height=\"100\" scrolling=\"no\" marginheight=0 marginwidth=0 frameborder=\"0\" id=\"smallResources\"><\/iframe>";
smallResource += "";
}
else
{
var smallResource="";
smallResource += "<iframe src=\"small-resources.php\" width=\"197\" height=\"90\" scrolling=\"no\" marginheight=0 marginwidth=0 frameborder=\"0\" id=\"smallResources\"><\/iframe>";
smallResource += "";
	
}



document.writeln(smallResource);
