How can I bring a window to frontmost without focusing it using Applescript in OS X 10.8

Solution 1:

If an application has open windows, this should raise them above windows from other applications, but keep them below ones from the current application.

tell application "System Events"
    perform action "AXRaise" of window 1 of process "QuickTime Player"
end tell