var webshopminwidth = 1045 ;
function newshopwindow(url) {
   var shopwd = window.open(url,"webshop");
   if (shopwd!=null) {
   	if(shopwd.innerWidth < webshopminwidth) { 
   		shopwd.innerWidth = webshopminwidth + 50
   	}
   }
   
}