You can have a significant interaction without significant main effects and without collinearity; collinearity is a relationship among the independent variables; effects (whether main or interaction) are about relations between the dependent and independent variables
In your case, one IV is significant and the other is not, and the interaction is. It is easy to create data that matches this. In R
x1 <- rnorm(100)
x2 <- rnorm(100)
int <- x1*x2
ylin <- 10*x1 + 5*x1*x2 + rnorm(100, .1, .02)
ylog <- ylin > 0.8
model <- glm(ylog~x1+x2+x1*x2)
and there is no correlation between x1 and x2
-------------------------------------------
Peter Flom
-------------------------------------------