var newwindow;
function poppy(url)
{
	if ((url == "/html/popup/101608BeautyBox/index.html") || (url == "/html/popup/101608Wristlet/index.html") || (url == "/html/popup/101608KeyChain/index.html") || (url == "/html/popup/101608LotionSet/index.html")) {
		newwindow=window.open(url,'pop','width=400,height=510,scrollbars=no');
	}
	else {
		newwindow=window.open(url,'pop','width=400,height=510,scrollbars=yes');
	}
	if (window.focus) {newwindow.focus()}
}
function showCYOPopup(url, showScroll)
{
	newwindow = window.open(url, 'pop', 'width=400,height=510,scrollbars='+showScroll);
	if (window.focus)
	{
		newwindow.focus();
	}
}