/**
* 페이지를 읽기 전용으로 설정
*/
var setReadOnly = function ()
{
var input = $("input");
input.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this). Wrap(function()
{
return '';
}); >});
var select = $("select");
select.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this). Wrap(function()
{
return '';
}); >});
var textarea = $("textarea");
textarea.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this). Wrap(function()
{
return '';
}); >});
var img = $("img");
img.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this). Wrap(function()
{
return '';
}); >});
}