// Popup mailing list confirmation

// IMPORTANT: 
// Window name must match window target value in form
// Form must also contain function onSubmit='pop()'
// Form action posts to same URL below - http://www.veronicaskincare.com/subscribe2/index.mvc?

function pop() {
	var newWin;
	newWin = window.open("http://www.veronicaskincare.com/subscribe2/index.mvc?","Veronica",'resizable=no,scrollbars=no,width=450,height=200,toolbar=no');
	}
