function PopUpWindow(pageselect) {
	
	PopUpWidth = 310; //ポップアップの幅
	PopUpHeight = 500; //ポップアップの高さ
	
	if (pageselect == "PopUp1") {
	window.open('search_suggest_link.html', '_blank', 'width=' + PopUpWidth + ',height=' + PopUpHeight );
	}
	
}
