function openRecommendPhoto(shop,num){
	var s = new String();
	s += '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n';
	s += '<html lang="ja">\n';
	s += '<head>\n';
	s += '<meta http-equiv="content-language" content="jp">\n';
	s += '<meta http-equiv="content-type" content="text/html;charset=Shift_JIS">\n';
	s += '<meta http-equiv="content-script-type" content="text/javascript">\n';
	s += '<meta http-equiv="content-style-type" content="text/css">\n';
	s += '<style type="text/css">\n';
	s += '<!--\n';
	s += 'body { background-color:#ffffff; margin:4px;}\n';
	s += '-->\n';
	s += '</style>';
	s += '<title>photo</title>\n';
	s += '</head>\n';
	s += '<body bgcolor="#ffffff" text="#ffffff">\n';
	s += '<div align="center">\n';
	s += '<a href="javascript:void(0);" onClick="window.close();"><img src="http://www.sp-' + shop + '.com/recommend/' + num + '/jitu.jpg" border="1"></a>\n';
	s += '</div>\n';
	s += '</body>\n';
	s += '</html>\n';
	coverWin = window.open('','recommend','width=320,height=420');
	coverWin.document.open();
    coverWin.document.write(s);
	coverWin.document.close();
	coverWin.focus();
}

