

function openWindow(strUrl,w,h) {
  if(strUrl.lastIndexOf("compare_pillow") == -1){
  	var cWin = window.open(strUrl,"SiyouWindow","width="+w+",height="+h+",resizable=yes,scrollbars=yes");
  
  }else{
	var cWin = window.open(strUrl,"SiyouWindow","width="+w+",height="+h+",resizable=yes,scrollbars=yes,toolbar=yes,location=yes,menubar=yes");
  }
  cWin.focus();
}
