﻿
function printDocu(docuType)
{

        if (docuType == "CompapersInfo")  
	{
		document.write("공인 인증서는 전자상거래에서 인감 또는 신분증 역할을 하며, 정부로 부터 ");
		document.write("&nbsp;지정 받은 공인인증기관이 발행하는 인증서로, 구비서류를 준비하여 해당 ");
		document.write("&nbsp;등록기관에 제출, 신원확인을 받으셔야 합니다. <br>");
		document.write("&nbsp;&nbsp;&nbsp;");
		document.write("<center><A href=\"javascript:papersInfo('corpbiz');\"><img src=\"http://www.tradesign.net/imgs/papers/btn_corpbiz.gif\" border=0></a>  &nbsp;&nbsp;&nbsp;");
		document.write(" <A href=\"javascript:papersInfo('indibiz');\"><img src=\"http://www.tradesign.net/imgs/papers/btn_indibiz.gif\" border=0></a></center>");		
	}
	else if (docuType == "PerpapersInfo")  
	{
		document.write("공인 인증서는 전자상거래에서 인감 또는 신분증 역할을 하며, 정부로 부터 ");
		document.write("&nbsp;지정 받은 공인인증기관이 발행하는 인증서로, 구비서류를 준비하여 해당 ");
		document.write("&nbsp;등록기관에 제출, 신원확인을 받으셔야 합니다. <br>");
		document.write("&nbsp;&nbsp;&nbsp;");
		document.write("<center><A href=\"javascript:papersInfo('person');\"><img src=\"http://www.tradesign.net/imgs/papers/btn_person.gif\" border=0></a></center>");	
	}
	return true;

}

//  준비서류 정보   gschoi add 08.04.02 
function papersInfo(pgType)
{
	if (pgType == "indibiz"){       //개인사업자
		window.open( 'http://www.tradesign.net/certification/indibiz_papers.html',                              'reguser','scrollbars=no,status=yes,resizable=yes,width=480,height=530' );
	}else if (pgType == "corpbiz"){	//법인사업자
		window.open( 'http://www.tradesign.net/certification/corpbiz_papers.html',                                                           'reguser','scrollbars=no,status=yes,resizable=yes,width=480,height=557' );
	}else if (pgType == "person"){	//개인
		window.open( 'http://www.tradesign.net/certification/person_papers.html',                                                           'reguser','scrollbars=no,status=yes,resizable=yes,width=480,height=355' );
	}
	return;
}