/**
*	ショッピングガイド
*/
function openGuide(in_obj){
	var url = in_obj;
	
	var windowName = "window_denimlife";
	var width  = 600;
	var height = 900;
	
	var w = window.open(url, windowName, "toolbar=1,status=1,menubar=1,scrollbars=1,resizable=1,height=" + height + ",width=" + width);
	
	x = (screen.width  - width)  / 2;
	y = (screen.height - height) / 2 - 100;
	
	w.resizeTo(width, height);
	w.moveTo(x,y);
	w.focus();
}
