function winBRopen(theURL, Name, popW, popH, scroll) { // V 1.0
	var winleft = (screen.width - popW) / 2;
	var winUp = (screen.height - popH) / 2;
	winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable=0';
	Win = window.open(theURL, Name, winProp);
	if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
}

function optIn() {
	d=self.document.optin;
	d.opt.req=true;
	d.opt.check='email';
	d.opt.msg='E-mail address is either invalid or missing.';
	if(checkAll(d)){
		winBRopen('http://www.simplydresses.com/popups/opt-in_pg.cfm?address='+document.optin.opt.value+'&dbmessage='+document.optin.dbmessage.value,'newWin','298','179','no');
		d.opt.value = '';
	}
}
//function addToFavorites() {
//	var urlAddress = "http://www.promgirl.com";
//	var pageName = "Promgirl - Dresses, Shoes and Accessories for Prom!";
//	if (window.external) { window.external.AddFavorite(urlAddress,pageName); }
//	else { alert("Please remember to bookmark this site!"); }
//}
function addItemToFavorites() { 
	if (window.external) { window.external.AddFavorite(location.href,document.title); }
	else { alert("Please remember to bookmark this site!"); }
}