function outwin(url,windowname,width,height) {
// var features="location=no, menubar=no, status=no, scrollbars=no, resizable=no, toolbar=no";
 var features="menubar=no, toolbar=no, scrollbars=yes, left=0, top=0";
 if (width) {
  if (window.screen.width > width)
   features+=", left="+(window.screen.width-width)/2;
  else width=window.screen.width;
  features+=", width="+width;
 }
 if (height) {
  if (window.screen.height > height)
   features+=", top="+(window.screen.height-height)/2;
  else height=window.screen.height;
  features+=", height="+height;
 }
 window.open(url,windowname,features);
}


<!--
function printout() {
	window.open('/salon/detail/coupon/?mode=printout', 'printout', 'width=430, height=600, menubar=no, toolbar=no, scrollbars=yes, left=0, top=0');
	}
// -->
<!--
function entry() {
	window.open('/salon/detail/coupon/?mode=mailform', 'entry', 'width=580, height=700, menubar=no, toolbar=no, scrollbars=yes, left=0, top=0');
	}
// -->
<!--
function catalogout() {
	window.open('/salon/detail/catalog/?mode=printout', 'catalogout', 'width=800, height=600, menubar=no, toolbar=no, scrollbars=yes, left=0, top=0');
	}
// -->

