// JavaScript Document
function ShowADS()
{
    if((screen.width == 1440) && (screen.height == 900))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1280) && (screen.height == 800))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1680) && (screen.height == 1050))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1280) && (screen.height == 1024))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1280) && (screen.height == 768))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1280) && (screen.height == 960))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1280) && (screen.height == 720))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1366) && (screen.height == 768))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1360) && (screen.height == 768))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1400) && (screen.height == 1050))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1600) && (screen.height == 900))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1920) && (screen.height == 1080))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1920) && (screen.height == 1200))
    {
		showads.style.display='block';
    }
	
	else if ((screen.width == 1024) && (screen.height == 768))
    {
		showads.style.display='none';
    }
	
	else if ((screen.width == 1152) && (screen.height == 864))
    {
		showads.style.display='none';
    }
	
	else if ((screen.width == 800) && (screen.height == 600))
    {
		showads.style.display='none';
    }
	
	else
    {
		showads.style.display='none';
    }
}
