
function showNews(newsId, url, popup) {
	if (popup) {
		var location;
		if (url != '') {
			location = url;
		} else {
			location = "/is-bin/INTERSHOP.enfinity/WFS/Sony-SonyStyle-Site/zh_TW/-/TWD/NewsCenter-ViewDetail?UUID=" + newsId;
		}
		window.open(location,'News');
	} else {
		if (url != '') {
  		window.location = url;
  	} else {
  		window.location = "/is-bin/INTERSHOP.enfinity/WFS/Sony-SonyStyle-Site/zh_TW/-/TWD/NewsCenter-ViewDetail?UUID=" + newsId;
  	}
  }
}
  	