Well, I got it, thank you for the ideas.
Just in case someone else is interested in something like this, the procedure is:
[ol]
[li]Shrink the windows partition (sdc1) to get a free one (sdc2), like in any normal dual boot installation. I used a windows partitioning tool to avoid problems. [/li][li]Download and burn a Live-USB (sda1) [/li][li]Prepare the bootable USB stick (sdb). This was the tricky part.[/li][LIST=1]
[li]Copy a MBR to the USB (sdb). [/li]```
dd if=/usr/share/syslinux/mbr.bin of=sdb &>/dev/null
[li]Set the first USB partition as bootable.[/li]```
parted /dev/sdb set 1 boot on &>/dev/null
[li]Now, or later during installation, this partition (sdb1) that will contain /boot must be formatted as EXT3 or EXT4, FAT doesn’t work!. The partition must be greater than 64MB (not very much today!) [/li][/ol]
[li]Install from the Live USB[/li][ol]
[li]Install swap, / and /home in the free windows partition (sdc2) as normal. [/li][li]In the partitioning section, edit the bootable USB partition (sdb1), format as EXT4 and mount as /boot [/li][li]Later in the installation, edit GRUB settings. Remove it from MBR and install it in /boot [/li][/ol]
[li]Set the BIOS so that the USB hard disk boots before the internal hard disk [/li][/LIST]
With this setup, if you boot with the bootable USB stick plugged on, you have a normal dual boot system but if you boot without the USB stick you have a normal Windows boot.
Advantages of this set up are:
[ul]
[li]You don’t touch Windows boot loader so you can avoid problems. [/li][li]As Windows and openSUSE boot loaders are placed in different places, and openSUSE’s one is even unpluggable, if you reinstall Windows or openSUSE you don’t affect or destroy the other, as is the case when you reinstall Windows in a typical dual boot system. [/li][li]You can hide the dual boot system if you are interested in that, except if someone checks the hard disk with a partitioning tool that detects EXT filesystems. [/li][li]Security. No one can boot (even you) without the bootable USB stick. [/li][/ul]
I hope this will be usefull for someone.