var ShowWindow = "";

function OpenShow(ShowUrl, ShowWidth, ShowHeight)
	{
	ShowWidth = parseInt(ShowWidth, 10) + 20;
	ShowHeight = parseInt(ShowHeight, 10) + 20;
	
	ShowWindow = window.open(ShowUrl, "Show", 'width='+ShowWidth+', height='+ShowHeight+', left=20, top=20, resizable=yes');
	ShowWindow.focus();
	}


function OpenShowPosition(ShowUrl, ShowWidth, ShowHeight, ShowLeft, ShowTop)
	{
	ShowWidth = parseInt(ShowWidth, 10) + 20;
	ShowHeight = parseInt(ShowHeight, 10) + 20;
	
	ShowWindow = window.open(ShowUrl, "Show", 'width='+ShowWidth+', height='+ShowHeight+', left='+ShowLeft+', top='+ShowTop+', resizable=yes');
	ShowWindow.focus();
	}
