как сделать так чтобы в popup окне принимался css стили,? Например естьь файл style.css и как сделать чтобы в popup окне принимался стили из style.css? Где и как дать путь к файлу?
<script type="text/javascript">
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);
w2.document.close()
}
</script>