Hello,

I want to give the user the opportunity to register for using my website. Here is the code which I want to use. My question is - how can I open a NEW(!!) screen if I see that the user has NOT registered before?? Needless to say, the response.redirect target=blank - does not work!!

Code:
<%
dim checkCookie

checkCookie = request.cookies("pq")

if checkCookie = "" then
	response.redirect("register.asp  target=_blank")	
end if
Thanks,
T