﻿var popbackground="#e8e2d1"; 
var windowtitle="الموقع الرسمى لأمانة نجران" ; 
var bodyattribute='';

function PopUp(textdescription,name,width,height)
{
var winattributes;

if(width != null & height != null)
    winattributes='width='+width+',height='+height+',resizable=no,status=yes,top=0';
else
    winattributes='width=250,height=250,resizable=yes,top=0,status=yes,scrollbars=yes';
 if (typeof jkpopwin=="undefined" || jkpopwin.closed)
 {
        jkpopwin=window.open("","MyPopUp",winattributes,false);
        //jkpopwin.name = name; 
 }
    jkpopwin.document.open();
    jkpopwin.document.write('<html>');
    jkpopwin.document.write('<head>');
    jkpopwin.document.write('<link rel="stylesheet" type="text/css" href="editor.css"/>');
    jkpopwin.document.write('<link rel="stylesheet" type="text/css" href="najran.css"/>');
    jkpopwin.document.write('<script>');
    jkpopwin.document.write('function closewindow(){window.close()}');
    jkpopwin.document.write(' var NS = (navigator.appName=="Netscape")?true:false; '+
    'function FitPic()'+ 
    '{'+ 
    'iWidth = (NS)?window.innerWidth:document.body.clientWidth; '+
    'iHeight = (NS)?window.innerHeight:document.body.clientHeight;'+ 
    'iWidth = '+width+' - iWidth; '+
    'iHeight = '+height+' - iHeight;'+ 
    'window.resizeBy(iWidth+25, iHeight+28); '+
    'self.focus();'+ 
    '}'); 
    jkpopwin.document.write('</script>');
    jkpopwin.document.write('<title>'+name+'</title>');
    jkpopwin.document.write('</head>');
    //
    jkpopwin.document.write('<body bgcolor="#e8e2d1" onload="FitPic();">'+
    '<p align="center">'+
    //style="color:#f2f4ed;font-family:verdana;font-size:13px;font-weight:normal;padding-top:5px"
    '<span class="text">'+
    textdescription+
    '</span>'+
    
    '</p>'+
    '<p align="center">'+
    '<a  href="javascript:;" class="button" onclick="closewindow();" >إغلاق'+'</a>'+
    '</p>'+
    '</body>'+
    '</html>');
    jkpopwin.document.close();
    jkpopwin.focus();
}