function res(side)
{
		var height=0;
		var width=0;
		if (self.java) {   // for NN3 with enabled Java
		       var jkit = java.awt.Toolkit.getDefaultToolkit();
		       var scrsize = jkit.getScreenSize();       
		       width = scrsize.width; 
		       height = scrsize.height; 
		}
		else {     // for NN4 and IE4
		        width = screen.width;
		        height = screen.height;
		}

	if (side=="left") {
		 		if (width > 1024 && height > 0) {
				  document.write("<td width=60 background=images/bg_left.gif>&nbsp;</td>");
				  document.write("<td width=9>&nbsp;</td>");

				} else {
				   document.writeln("")
				}
	}

	if (side=="right") {
		 		if (width > 1024 && height > 0) {
				  document.write("<td width=9>&nbsp;</td>");
				  document.write("<td width=60 background=images/bg_right.gif>&nbsp;</td>");
				} else {
				   document.writeln("")
				}
	}
}