stproperties="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=n,width=800,height=600";
							
function dlgprint(StrUrl)
{
	MyWindow = window.open(StrUrl, 'PrintDialog', stproperties);
	MyWindow.focus();
	MyWindow.print();
};

stmovieproperties="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=640,height=480";
function showmovie(StrUrl)
{
	MyWindow = window.open(StrUrl, 'Movie', stmovieproperties);
	MyWindow.focus();
};

stbasketproperties="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=200,height=200";
function showbasket(StrUrl)
{
	MyWindow = window.open(StrUrl, 'Basket', stbasketproperties);
};
