I want to have a pop up window on our website only if a certain condition is true. Below is the basic gist of the code I need. I dont know how to combine the response.write statement with the window.open statement. Thanks in advance for any help!!!
<%
dim pop
pop = rs.Fields("Status"
If pop="AC" then
window.open('open.html','op',config='height=300,width=300')
%>
<%
dim pop
pop = rs.Fields("Status"
If pop="AC" then
window.open('open.html','op',config='height=300,width=300')
%>