- published: 09 Oct 2011
- views: 3612305
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Indecent Proposal is a 1993 drama film based on the novel of the same name by Jack Engelhard. It was directed by Adrian Lyne and stars Robert Redford, Demi Moore, and Woody Harrelson.
High school sweethearts David (Woody Harrelson) and Diana Murphy (Demi Moore) are a married couple who travel to Las Vegas, hoping they can win enough money to finance David's fantasy real estate project. They place their money on red in roulette and lose.
After gambling away all of their savings, they encounter billionaire John Gage (Robert Redford). Gage is attracted to Diana and offers them one million dollars to spend a night with her. After a difficult night, David and Diana decide to accept the offer, and a contract is signed the next day. Gage flies Diana to a private yacht where he offers her a chance to void the deal and return to her husband if he loses a toss of his lucky coin. Gage calls it correctly and she spends the night with him.
Although he had hoped to forget the whole incident, David grows increasingly insecure about his relationship with Diana, consumed with a fear that she remains involved with Gage; this insecurity is heightened by the fact that Diana discovers that Gage has bought their home/property while it was going into foreclosure. As tension between them builds, David and Diana separate.
Indecent Proposal is the second studio album released by hip-hop duo Timbaland & Magoo. The album was released on November 20, 2001, becoming the group's second LP, and Timbaland's third, as he issued Tim's Bio: Life from da Bassment as a solo album in 1998. Indecent Proposal takes its name from the 1993 film of the same name. It was the final Da Bassment album released, three months after Aaliyah's death.
The album was originally due to have been issued in late 2000, with the track "Roll Out" being issued as a promotional single that fall. However, the album was later held over and reworked. Timbaland and Magoo's regular collaborators, including Playa and Mad Skillz, appear on the album. Indecent Proposal includes several tracks featuring Timbaland's latest collaborators, Petey Pablo and Sebastian, who is also Timbaland's brother. Sebastian was one of several artists signed to Timbaland's short-lived Beat Club Records, as was Ms. Jade, who appears on "In Time". The album also features high-profile guest appearances by Jay-Z, and Ludacris, the latter of which had worked with Timbaland prior to becoming famous. Certain instrumentals used on the album were originally intended for Ginuwine's third LP, Life, but his record label, 550 Music, went against Timbaland producing the whole album - so Timbaland took some of the instrumentals and used them for himself.
Evangelos Odysseas Papathanassiou (Greek: Ευάγγελος Οδυσσέας Παπαθανασίου [evˈaɲɟelos oðiˈseas papaθanaˈsiu]; born 29 March 1943), known professionally as Vangelis (Greek: Βαγγέλης [vaɲˈɟelis]; English pronunciation: /væŋˈɡɛlᵻs/), is a Greek composer of electronic, progressive, ambient, jazz, pop rock, and orchestral music. He is best known for his Academy Award–winning score for the film Chariots of Fire, composing scores for the films Antarctica, Blade Runner, Missing, 1492: Conquest of Paradise, and Alexander, and the use of his music in the PBS documentary Cosmos: A Personal Voyage by Carl Sagan.
After having taking piano lessons from renowned Greek composer Aristotelis Koundouroff, Vangelis began his professional musical career working with several popular bands of the 1960s such as The Forminx and Aphrodite's Child, with the latter's album 666 going on to be recognized as a psychedelic classic. Throughout the 1970s, Vangelis composed music scores for several animal documentaries, including L'Apocalypse Des Animaux, La Fête sauvage and Opéra sauvage; the success of these scores brought him into the film scoring mainstream. In the early 1980s, Vangelis formed a musical partnership with Jon Anderson, the lead singer of progressive rock band Yes, and the duo went on to release several albums together as Jon & Vangelis.
Vangelis is a common Greek name, deriving from Evángelos (Ευάγγελος).
It may refer to:
Vangelis, sometimes spelled Vangellys (born September 7, 1981) is the ring name of a Mexican luchador, or masked professional wrestler, currently working for the Mexican professional wrestling promotion Consejo Mundial de Lucha Libre (CMLL) portraying a rudo ("bad guy") wrestling character. He has formerly worked for Asistencia Asesoría y Administración (AAA) in Mexico and Dragon Gate in Japan. Also, Vangelis is the winner of the 2013 En Busca de un Ídolo tournament.
Vangelis trained under El Torero, Dick Angelo and Huracán González before making his professional wrestling debut in 1999
He quickly began working for Asistencia Asesoría y Administración (AAA), training at their school while only occasionally wrestling on their television shows. Vangelis was teamed up with Jimmy Boy and Billy to form a boy band inspired group called Los Spice Boys. At Triplemanía VII Jimmy Boy, Billy and Vangelis defeated Los Payasos (Coco Amarillo, Coco Rojo and Coco Verde) in one of the undercard matches. At the 2000 Guerra de Titanes event Los Spice Boys lost to Los Vatos Locos (Espiritu, Nygma, Picudo and Silver Cat). In 2001 Vangelis was given a new ring character, that of a Nazi soldier, complete with swastika armband and the Nazi salute that naturally made him a rudo, a heel or bad guy character. Vangelis formed a group known as Los Warriors along with Kevin (a sailor), Brandon (Aztec Warrior) and Uri (Viking) although Uri only worked with the group for a few months. Los Warriors had a long running storyline feud against Los Barrio Boys, former partners Billy Boy and Alan (Jimmy Boy using a new name) as well as Decnis. The feud between the two factions saw Vangelis win his first ever Luchas de Apuestas, or bet match, when he defeated Alan in a Steel cage match that involved all members of Los Warriors and Los Barrio Boys.
Indecent Proposal movie clips: http://j.mp/1JaLQlc BUY THE MOVIE: http://amzn.to/uXqYR8 Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: John (Robert Redford) offers David (Woody Harrelson) $1 million for one night with his wife Diana (Demi Moore). FILM DESCRIPTION: Adrian Lyne buffs the premise of Honeymoon in Vegas to a fine gloss in this yuppie melodrama that poses the conundrum of whether the loving husband of an equally loving wife will accept $1 million to allow his wife to spend one night with a billionaire who looks like Robert Redford. All the cynics please take a number and form a line at the right. Demi Moore and Woody Harrelson play Diana and David Murphy, high-school sweethearts who marry and who are doing very well -- Diana is a successful real-e...
Indecent Proposal movie clips: http://j.mp/1JaLQlc BUY THE MOVIE: http://amzn.to/uXqYR8 Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: John (Robert Redford) encourages Diana (Demi Moore) during a high-stakes game of craps. FILM DESCRIPTION: Adrian Lyne buffs the premise of Honeymoon in Vegas to a fine gloss in this yuppie melodrama that poses the conundrum of whether the loving husband of an equally loving wife will accept $1 million to allow his wife to spend one night with a billionaire who looks like Robert Redford. All the cynics please take a number and form a line at the right. Demi Moore and Woody Harrelson play Diana and David Murphy, high-school sweethearts who marry and who are doing very well -- Diana is a successful real-estate agent, and David i...
Indecent Proposal: Was it good? What’s happening in this Indecent Proposal movie clip? Diana (Demi Moore) tells David (Woody Harrelson) that she went to see Gage (Robert Redford) to confront him about buying their land. Learning that she met Gage again drives David mad and creates an intense dispute between the couple. Rent or buy Indecent Proposal here: https://amzn.to/3mhrm6n What’s the movie Indecent Proposal about? David (Woody Harrelson) and Diana Murphy (Demi Moore) are a married couple and have loved each other since highschool. Diana is a top-notch real estate agent and David is a talented architect hoping to establish himself by designing their dream project: a beachfront house in Santa Monica in which the lovers have invested everything they have. However, when the recession ...
John Barry - Instrumental Suite (Filme Proposta Indecente) Vídeo e Edição: Luiz Guilherme.
Indecent Proposal: The Million dollar club What’s happening in this Indecent Proposal movie clip? Gage (Robert Redford), and Diana (Demi Moore) are talking in the car. To her disbelief, Gage tells her that she is the best of all the women from what he calls “the million-dollar club”. Rent or buy Indecent Proposal here: https://amzn.to/3mhrm6n What’s the movie Indecent Proposal about? David (Woody Harrelson) and Diana Murphy (Demi Moore) are a married couple and have loved each other since highschool. Diana is a top-notch real estate agent and David is a talented architect hoping to establish himself by designing their dream project: a beachfront house in Santa Monica in which the lovers have invested everything they have. However, when the recession hits, their finances take a nosediv...
https://www.imdb.com/title/tt0107211/?ref_=fn_al_tt_1
Indecent Proposal: Diana confronts Gage What’s happening in this Indecent Proposal movie clip? Diana (Demi Moore) arrives at the restaurant where Gage (Robert Redford) is having lunch to confront him. She is furious about him buying her property and makes a scene in front of all the customers. Rent or buy Indecent Proposal here: https://amzn.to/3mhrm6n What’s the movie Indecent Proposal about? David (Woody Harrelson) and Diana Murphy (Demi Moore) are a married couple and have loved each other since highschool. Diana is a top-notch real estate agent and David is a talented architect hoping to establish himself by designing their dream project: a beachfront house in Santa Monica in which the lovers have invested everything they have. However, when the recession hits, their finances take...
Soundtrack from the 1993 Adrian Lyne film "Indecent Proposal," with Robert Redford, Demi Moore, Woody Harrelson, Seymour Cassel, Oliver Platt, Billy Bob Thornton, Sheena Easton & Herbie Hancock. -- HD Film Tributes is a channel which currently contains over three hundred movie homages and counting. We make zero money from YouTube as obviously none of these edits will ever be monetized by us. Any and all ad revenue from these videos goes directly to Google as well as to the various copyright owners (the film studios and the recording industry) just as it should. Please consider supporting our editing efforts by leaving a small tip in our tip jar. Your help will be greatly appreciated. Thank You! - https://paypal.me/HDFilmTributes
Indecent Proposal is a 1993 drama film, based on the novel of the same name by Jack Engelhard. It was directed by Adrian Lyne and stars Robert Redford, Demi Moore, Woody Harrelson, and Oliver Platt. Music by John Barry.
John Barry - Instrumental Suite (Filme Proposta Indecente) Vídeo e Edição: Luiz Guilherme.
A Story of Love & Sadness... By Andrew Bairactaris
Love Theme by John Barry.
John Barry - Indecent Proposal - Dress Shop (album version)
'In All The Right Places' was recorded by Lisa Stansfield and was intended, by John Barry, to be the main title song for the Robert Redford / Demi Moore movie, 'Indecent Proposal'. However, not liked by the director, the song was buried at the back of the films end titles. This is the gorgeous instrumental version that is heard briefly during the movie. Solo Piano played by Michael Lang. Composed, arranged and conducted by John Barry.
One of the most memorable scenes from 'Indecent Proposal' is where Robert Redford describes when, as a young man, he saw a beautiful girl on a subway train but was too shy to say anything. As he gets off the train, the girl gives him the most amazing smile. But he never saw her again. Barry composed a wonderful score for the film and this is definately one of the highlights. Solo Piano by Michael Lang. Composed, arranged and conducted by JOHN BARRY.
Convert: 440Hz to 432Hz [Adobe Audition CC]
Indecent Proposal is a 1993 drama film based on the novel of the same name by Jack Engelhard. It was directed by Adrian Lyne and stars Robert Redford, Demi Moore, and Woody Harrelson.
High school sweethearts David (Woody Harrelson) and Diana Murphy (Demi Moore) are a married couple who travel to Las Vegas, hoping they can win enough money to finance David's fantasy real estate project. They place their money on red in roulette and lose.
After gambling away all of their savings, they encounter billionaire John Gage (Robert Redford). Gage is attracted to Diana and offers them one million dollars to spend a night with her. After a difficult night, David and Diana decide to accept the offer, and a contract is signed the next day. Gage flies Diana to a private yacht where he offers her a chance to void the deal and return to her husband if he loses a toss of his lucky coin. Gage calls it correctly and she spends the night with him.
Although he had hoped to forget the whole incident, David grows increasingly insecure about his relationship with Diana, consumed with a fear that she remains involved with Gage; this insecurity is heightened by the fact that Diana discovers that Gage has bought their home/property while it was going into foreclosure. As tension between them builds, David and Diana separate.
Look Jav, I Can tell something is going on with you. You seem like you have things on your mind like you distracted.(Man how did i get into this) We've always been honest with eachother,(i didn't do a thing) So if your heart isn't in this anymore just let me know,(damn) Don't let me here about what you've been doin from somebody else(what was i supposed to do)...
[Verse 1:]
You ? hear something
Cuz she took me down,
right on the ground
She's supposed to be my girl's friend
If she only knew, what she's doin
I told her that she needs to leave
because this could, get risky
she wasn't tryin to here me
she took off them clothes
so here we go...
[chorus:]
You know we shouldn't be
doin this kinda thing
I love my baby
and she loves me
Over this tempting love
Just can't get caught up
Indecent Proposal
Indecent babe,
Indecent babe,
If you were in my shoes
tell me what would you do
Your woman's at the crib
Keepin it warm for you
Its very clear to see
You're makin this hard for me
Indecent Proposal
[verse 2:]
I'm not gonna lie, she's look tight
but this isn't right
it just don't feel right
she told me that she doesn't care(i don't care)
she wants me now(i want you now)here on the bed
How could she be so damn fine
Just think about,If this got out
I've never worked to hard to give up now
Come on Javier, control yourself
[chorus:]
You know we shouldn't be
doin this kinda thing
I love my baby
and she loves me
Over this tempting love
Just can't get caught up
Indecent Proposal
Indecent babe,
Indecent babe,
If you were in my shoes
tell me what would you do
Your woman's at the crib
Keepin it warm for you
Its very clear to see
You're makin this hard for me
Indecent Proposal
[Bridge]
[chrous x2:]
You know we shouldn't be
doin this kinda thing
I love my baby
and she loves me
Over this tempting love
Just can't get caught up
Indecent Proposal
Indecent babe,
Indecent babe,
If you were in my shoes
tell me what would you do
Your woman's at the crib
Keepin it warm for you
Its very clear to see
You're makin this hard for me