var store = null;
function openStore(daURL) {
	if (store == null){
		store = window.open(daURL,'store','height=500,width=655,scrollbars=yes');
		store.focus();
	}
	else {
		store.location = daURL;
		store.focus();
	}
}
