묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.04.13 01:09
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
아래의 소스를 워드패드로 [나모나 드림위버로 저장하지 마세요...]
view_img.php 로 저장하신 다음 다시 본인의 갤러리 스킨안에 업로드 하세요...
<html>
<head>
<title>이미지 보기</title>
<meta http-equiv=Content-Type content=text/html; charset=EUC-KR>
<META http-equiv=imagetoolbar content=no>
<script language="javascript">
function processKey()
{
if( (event.ctrlKey == true && (event.keyCode == 78 || event.keyCode == 82)) ||
(event.keyCode >= 112 && event.keyCode <= 123) || event.keyCode == 8)
{
event.keyCode = 0;
event.cancelBubble = true;
event.returnValue = false;
}
}
document.onkeydown = processKey;
</script>
<script LANGUAGE=JavaScript>
var isNav4, isIE4;
var windowX, windowY;
var bLargeImage = 0;
var x,y;
if (parseInt(navigator.appVersion.charAt(0)) >= 4)
{
isNav4 = (navigator.appName == "Netscape") ? 1 : 0;
isIE4 = (navigator.appName.indexOf("Microsoft") != -1) ? 1 : 0;
}
function fitWindowSize()
{
if (isNav4) {
window.innerWidth = document.layers[0].document.images[0].width;
window.innerHeight = document.layers[0].document.images[0].height;
}
if (isIE4) {
window.resizeTo(500, 500);
width = 500 - (document.body.clientWidth - document.images[0].width);
height = 500 - (document.body.clientHeight - document.images[0].height)
windowX = (window.screen.width-width)/2;
windowY = (window.screen.height-height)/2;
if(width>screen.width){
width = screen.width;
windowX = 0;
bLargeImage = 1;
}
if(height>screen.height-50){
height = screen.height-50;
windowY = 0;
bLargeImage = 1;
}
x = width/2;
y = height/2;
window.moveTo(windowX,windowY);
window.resizeTo(width, height);
}
}
function move()
{
if(bLargeImage)
window.scroll(window.event.clientX - 50,window.event.clientY -50);
}
</script>
</head>
<body oncontextmenu="return false" onDragStart="return false" onSelectStart="return false" onLoad="fitWindowSize()" leftmargin=0 marginwidth=0 topmargin=0 marginheight=0>
<A href=# onclick=window.close()><img src=<?=$img?> border=0></a><br>
</body>
</html>