// JavaScript Document

function orderWindowOpen(path) {
	window.open(path, '', 'width=410, height=570');
}

function openImg(path, width, height) {
	window.open(path, '', 'width=' + width + ', height=' + height);
}