ksa, когда вставляю ваш код popup окно не открываеться.....
вот js которое испоьзуеться у меня на страничке:
function f() {
var s = document.getElementById("vwvwprint").innerHTML;
var w2 = window.open("toolbar=0, location=0, directories=0, font-family=Arial, font-size=11px, status=0, menubar=0, scrollbars=0, resizable=0, width=350, height=350");
w2.document.open();
w2.document.write(s);
var link = document.createElement("link");
link.rel = "stylesheet";
link.href = "style.css";
var head = w2.document.getElementsByTagName("head")[0];
head.appendChild(link);
w2.document.close()
}