function NumObj(obj){
if (event.keyCode >= 48 && event.keyCode <= 57) {
}else{
event.returnValue = false;
}
}
function noKorean(obj){
nowCarePosition=doGetCaretPosition(obj)
obj.value=obj.value.replace( /[ㄱ-ㅎㅏ-ㅣ|가-힣]/g, '' ) ;
setCaretPosition(obj,nowCarePosition);
}
function doGetCaretPosition (el) {
if (el.selectionStart) {
return el.selectionStart;
} else if (document.selection) {
el.focus();
var r = document.selection.createRange();
if (r == null) {
return 0;
}
var re = el.createTextRange(),
rc = re.duplicate();
re.moveToBookmark(r.getBookmark());
rc.setEndPoint('EndToStart', re);
var add_newlines = 0;
for (var i=0; i<rc.text.length; i++) {
if (rc.text.substr(i, 2) == 'rn') {
add_newlines += 2;
i++;
}
}
//return rc.text.length + add_newlines;
//We need to substract the no. of lines
return rc.text.length - add_newlines;
}
return 0;
}
function setCaretPosition(ctrl, pos)
{
if(ctrl.setSelectionRange)
{
ctrl.focus();
ctrl.setSelectionRange(pos,pos);
}
else if (ctrl.createTextRange) {
var range = ctrl.createTextRange();
range.collapse(true);
range.moveEnd('character', pos);
range.moveStart('character', pos);
range.select();
}
}
function numberFormat(num) {
var regexp = /\B(?=(\d{3})+(?!\d))/g;
return num.toString().replace(regexp, ',');
}
function design_window()
{
var num = document.getElementById("design_wd").value/650;
var height = document.getElementById("design_ht").value;
if(height < 2500)
{
var window_num = num.toFixed();
document.getElementById("design_total").innerHTML = window_num + "개";
//document.getElementById("design_normal").innerHTML = numberFormat(window_num*270000) + "원";
document.getElementById("design_premium").innerHTML = numberFormat(window_num*350000) + "원";
}
else if(height<3000)
{
var window_num = num.toFixed();
document.getElementById("design_total").innerHTML = window_num + "개";
//document.getElementById("design_normal").innerHTML = numberFormat(window_num*290000) + "원";
document.getElementById("design_premium").innerHTML = numberFormat(window_num*370000) + "원";
}
else
{
alert("3M 이상은 고하중형 폴딩도어입니다.");
}
}
function home_window()
{
var num = document.getElementById("home_wd").value/650;
var height = document.getElementById("home_ht").value;
if(height < 2500)
{
var window_num = num.toFixed();
document.getElementById("home_total").innerHTML = window_num + "개";
//document.getElementById("home_normal").innerHTML = numberFormat(window_num*270000) + "원";
document.getElementById("home_premium").innerHTML = numberFormat(window_num*300000) + "원";
}
else if(height<3000)
{
var window_num = num.toFixed();
document.getElementById("home_total").innerHTML = window_num + "개";
//document.getElementById("home_normal").innerHTML = numberFormat(window_num*290000) + "원";
document.getElementById("home_premium").innerHTML = numberFormat(window_num*330000) + "원";
}
else
{
alert("3M 이상은 고하중형 폴딩도어입니다.");
}
}
function sc_window()
{
var num = document.getElementById("sc_wd").value/650;
var height = document.getElementById("sc_ht").value;
if(height < 2500)
{
var window_num = num.toFixed();
document.getElementById("sc_total").innerHTML = window_num + "개";
document.getElementById("sc_normal").innerHTML = numberFormat(window_num*270000) + "원";
document.getElementById("sc_premium").innerHTML = numberFormat(window_num*300000) + "원";
}
else if(height<3000)
{
var window_num = num.toFixed();
document.getElementById("sc_total").innerHTML = window_num + "개";
document.getElementById("sc_normal").innerHTML = numberFormat(window_num*290000) + "원";
document.getElementById("sc_premium").innerHTML = numberFormat(window_num*320000) + "원";
}
else
{
alert("3M 이상은 고하중형 폴딩도어입니다.");
}
}
function cc_window()
{
var num = document.getElementById("cc_wd").value/650;
var height = document.getElementById("cc_ht").value;
if(height < 2500)
{
var window_num = num.toFixed();
document.getElementById("cc_total").innerHTML = window_num + "개";
document.getElementById("cc_normal").innerHTML = numberFormat(window_num*350000) + "원";
document.getElementById("cc_premium").innerHTML = numberFormat(window_num*380000) + "원";
}
else if(height<3000)
{
var window_num = num.toFixed();
document.getElementById("cc_total").innerHTML = window_num + "개";
document.getElementById("cc_normal").innerHTML = numberFormat(window_num*380000) + "원";
document.getElementById("cc_premium").innerHTML = numberFormat(window_num*400000) + "원";
}
else
{
alert("3M 이상은 고하중형 폴딩도어입니다.");
}
}
function hi_window()
{
var num = document.getElementById("hi_wd").value/650;
var height = document.getElementById("hi_ht").value;
if(height < 2500)
{
var window_num = num.toFixed();
document.getElementById("hi_total").innerHTML = window_num + "개";
//document.getElementById("hi_normal").innerHTML = numberFormat(window_num*400000) + "원";
document.getElementById("hi_premium").innerHTML = numberFormat(window_num*400000) + "원";
}
else if(height<3000)
{
var window_num = num.toFixed();
document.getElementById("hi_total").innerHTML = window_num + "개";
//document.getElementById("hi_normal").innerHTML = numberFormat(window_num*420000) + "원";
document.getElementById("hi_premium").innerHTML = numberFormat(window_num*430000) + "원";
}
else
{
alert("3M 이상은 고하중형 폴딩도어입니다.");
}
}
function wd_window()
{
var num = document.getElementById("wd_wd").value/650;
var height = document.getElementById("wd_ht").value;
if(height < 2500)
{
var window_num = num.toFixed();
document.getElementById("wd_total").innerHTML = window_num + "개";
document.getElementById("wd_normal").innerHTML = numberFormat(window_num*700000) + "원";
//document.getElementById("wd_premium").innerHTML = numberFormat(window_num*430000) + "원";
}
else if(height<3000)
{
var window_num = num.toFixed();
document.getElementById("wd_total").innerHTML = window_num + "개";
document.getElementById("wd_normal").innerHTML = numberFormat(window_num*740000) + "원";
//document.getElementById("wd_premium").innerHTML = numberFormat(window_num*450000) + "원";
}
else
{
alert("3M 이상은 고하중형 폴딩도어입니다.");
}
}
td {
color:black;
}
일반형 폴딩도어
| |
넓이(mm) |
높이(mm) |
| 수치 |
|
|
| 문짝수 |
|
<!--
| 고급형 |
|
-->
| 가격 |
|
|
<!--
상가형 폴딩도어
| |
넓이(mm) |
높이(mm) |
| 수치 |
|
|
| 문짝수 |
|
| 고급형 |
|
| 프리미엄형 |
|
|
카센터형 폴딩도어
| |
넓이(mm) |
높이(mm) |
| 수치 |
|
|
| 문짝수 |
|
| 고급형 |
|
| 프리미엄형 |
|
|
-->
단열형 폴딩도어
※열관율 1.69 시험성적서 보유
| |
넓이(mm) |
높이(mm) |
| 수치 |
|
|
| 문짝수 |
|
<!--
| 고급형 |
|
-->
| 가격 |
|
|
<!--
목재 폴딩도어
| |
넓이(mm) |
높이(mm) |
| 수치 |
|
|
| 문짝수 |
|
| 프리미엄형 |
|
|
디자인 폴딩도어
|
넓이(mm) |
높이(mm) |
| 수치 |
|
|
| 문짝수 |
|
| 고급형 |
|
| 프리미엄형 |
|
|
-->
고하중형 폴딩도어
| 고하중 |
3M이상일 시 고하중형에 속함
보강재와 미들바(중간바) 협의하여야 견적이 나옵니다.
견적의뢰. 1566-6994 |