befou35
07-15-2004, 09:43 PM
Hi, I try to call a new window where there will be certain elements, according to certain conditions. Can you help me finding what code I wrote wrong ?
Benjamin Fournier
webmaster beginning in javascript
<script type="text/javascript">
function MyWindow(message) {
now = new Date();
LocalTime = now.toLocaleString();
//Defining contents of page
contents=
'<body bgcolor="white">'+
'<h2>Prodimax inc.</h2>'+
'Close the Window<br>'+
'<A HREF="javascript:window.close()" >'+
'message' +
'</A>'+
'if(ycheck==on)document.write(ybox())'+
'if(coudecheck==on)document.write(coudebox())'+
'if(volantcheck==on)document.write(volantbox())'+
'if(jointcheck==on)document.write(jointbox())'+
'if(valvecheck==on)document.write(valvecheckbox())'+
'if(valvetetebassecheck==on)document.write(valvetetebassecheckbox())'+
'if(valvetetehautecheck==on)document.write(valvetetehautebox())'+
'if(valveteterectcheck==on)document.write(vavlveteterectbox())'
//Creating new Window
options = "toolbar=0,status=0,menubar=0,scrollbars=0," +
"resizable=0,width=500,height=800";
newwindow=window.open("","MyWindow", options);
newwindow.document.writeln(LocalTime);
newwindow.document.write(contents);
newwindow.document.close();
}
Benjamin Fournier
webmaster beginning in javascript
<script type="text/javascript">
function MyWindow(message) {
now = new Date();
LocalTime = now.toLocaleString();
//Defining contents of page
contents=
'<body bgcolor="white">'+
'<h2>Prodimax inc.</h2>'+
'Close the Window<br>'+
'<A HREF="javascript:window.close()" >'+
'message' +
'</A>'+
'if(ycheck==on)document.write(ybox())'+
'if(coudecheck==on)document.write(coudebox())'+
'if(volantcheck==on)document.write(volantbox())'+
'if(jointcheck==on)document.write(jointbox())'+
'if(valvecheck==on)document.write(valvecheckbox())'+
'if(valvetetebassecheck==on)document.write(valvetetebassecheckbox())'+
'if(valvetetehautecheck==on)document.write(valvetetehautebox())'+
'if(valveteterectcheck==on)document.write(vavlveteterectbox())'
//Creating new Window
options = "toolbar=0,status=0,menubar=0,scrollbars=0," +
"resizable=0,width=500,height=800";
newwindow=window.open("","MyWindow", options);
newwindow.document.writeln(LocalTime);
newwindow.document.write(contents);
newwindow.document.close();
}