// JavaScript Document
//Setting cookie on first visit for 1 day.  If it doesnt already exist, then show the Welcome Popup Form
if (( Get_Cookie( 'welcome' ) )==null&&(!document.getElementById('shootQSignUp'))&&(!document.getElementById('shootQThanks'))) {
document.getElementById('welcomePopup').style.display = "block"; 
}
Set_Cookie( 'welcome', 'repeat', '1', '/', '', '' );