//別ウィンドウで開く
function wopenS(){
window.open("ask-sale.html","winS","toolbar=yes,location=no,direction=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=540,height=550")}
function wopenQ(){
window.open("ask-qa.html","winQ","toolbar=yes,location=no,direction=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=540,height=460")}
function wopenMP(){
window.open("map.html","winMP","toolbar=yes,location=no,direction=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=540,height=550")}


/* target="_blank"g킸ɕʃEBhEŊJ */
/* http://css-happylife.com/log/javascript/000075.shtml */

function externalLinks() {
if (!document.getElementsByTagName) return;
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++) {
	var anchor = anchors[i];
	if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external")
	anchor.target = "_blank";
	}
}
window.onload=externalLinks;