<!--
function openurl(file,w,h,s,r){
var newwin=window.open(file,"basket","top=50,left=50,width="+w+",height="+h+",scrollbars="+s+",toolbar=0,resizable="+r);
newwin.focus(); 
return; 
 }
 
 function Copylist(str)
{
	var printWindow=window.open("","printWindow","width=10,height=10,left=10000,top=10000");
	printWindow.document.write(str);
	printWindow.document.execCommand("selectall");
	printWindow.document.execCommand("copy");
	printWindow.close();
}
 //---> 
