	function qVar( variable ) {
	
		var query = window.location.search.substring( 1 );
		var vars = query.split( '&' );
		
		for ( var i=0; i<vars.length; i++ ) {
		
			var pair = vars[i].split( '=' );
			
			if ( pair[0] == variable ) {
			
				return pair[1];
			}
		} 
		return ''
	}

 
	function rtc_pop ( affCode ) {
	
		if ( typeof(affCode) == 'undefined' ) {
			affCode = qVar('code')
			affCode = (affCode == '') ? 'VEN-default' : affCode
		}
	
		rtcWindow = window.open ('', 'rtcWindow','location=0,status=0,scrollbars=1,width=820,height=560');
		rtcWindow.focus()
		// rtcWindow.location = 'http://venture-api.com/misc/rtc/?code=' + affCode
		rtcWindow.location = 'http://www.calltoactionmedia.com/scripts/cpc.php?offer=M_706015&url=http%3A%2F%2Fwww.synthebyte.com%2Faffredir_DF.cfm%3Fbid%3D531%26lbid%3D15825%26rid%3D1274955&code=' + affCode;
	}