var jg = new jsGraphics("campusmap");

function drawTest(intLeft, intTop, intRight, intBottom)
{
	jg.setStroke(2);
  	jg.setColor("#CC0000"); // red

    jg.drawRect(intLeft, intTop, intRight, intBottom);
        
    // Maybe something to use as well
    //jg.fillRect(intLeft, intTop, intRight, intBottom);

	jg.paint();
}

