<script language="JavaScript">

//This Script is Copyright AHMET EKİNLER© 2000
//If you are going to use this code, you MUST leave these
//lines of script UNEDITED!

if ((screen.width == 1024) && (screen.height == 768))
{
alert('Your resolution is set at the recommended size that is required for this page to be viewed correctly.')
}
else
if ((screen.width == 800) && (screen.height == 600))
{
alert('Ekran çözünürlüğün 1024x768 olmalıydı!')
}
else
if ((screen.width == 640) && (screen.height == 480))
{
alert('Your resolution is too low to view this page correctly, please change it!')
}

document.write('Ekran çözünürlüğün - ' + screen.width + ' x ' + screen.height)

</script>