function openWin(theURL,winName,features) { //v2.0
 	winName = window.open(theURL,winName,'scrollbars=yes,resizable=yes,width=600,height=500');
	winName.resizeTo(600,500);
	winName.focus();
}


// fuer shop
function open_window(theURL,winName,features) { //v2.0
 	winName = window.open(theURL,winName,'scrollbars=yes,resizable=yes,width=600,height=500');
	winName.resizeTo(600,500);
	winName.focus();
}


