

function smallSize()
{
small = document.getElementById('container');
small.style.width="800px";
}


function mediumSize()
{
medium = document.getElementById('container');
medium.style.width="1024px";
}

function largeSize()
{
large = document.getElementById('container');
large.style.width="1280px";
}
