// JavaScript Document

function ViewMap()
{
    //window.open('map.html', 'Map', 'width=509px,height=247px,scrollbars=0');
    window.open('map.html', 'Map', 'width=512px,height=300px,scrollbars=0');
}

function ViewProduct(iId)
{
	window.open('product-' + iId + '.html', 'Product', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800px,height=600px');
}

function ViewImage(sImage)
{
	sURL = 'image.html?i=' + sImage;
	window.open(sURL, 'Image', 'width=800px,height=600px,scrollbars=0,resizable=1');
}

function CloseMe()
{
	window.close();
}
