 function init()
 {
 clickFight2();

//document.getElementById('main').innerHTML = '<iframe marginwidth="0" marginheight="0" src="http://www.bigideastech.com/2/cubics300x250.htm" scrolling="no" width="300" frameborder="0" height="250"></iframe>';
 // document.getElementById('main').innerHTML += '<iframe marginwidth="0" marginheight="0" src="http://www.bigideastech.com/2/cubics125x125.htm" scrolling="no" width="125" frameborder="0" height="125"></iframe>';
 //document.getElementById('main').innerHTML += '<iframe marginwidth="0" marginheight="0" src="http://www.bigideastech.com/2/adparlor300x250.html" scrolling="no" width="300" frameborder="0" height="250"></iframe>';
 //document.getElementById('main').innerHTML += '<iframe marginwidth="0" marginheight="0" src="http://www.bigideastech.com/2/adparlor250x250.html" scrolling="no" width="300" frameborder="0" height="250"></iframe>';
 
 }
 
      function clickFight2()
{
//document.getElementById('main').innerHTML = 'click fight';
  var req = opensocial.newDataRequest();

req.add(req.newFetchPersonRequest(opensocial.DataRequest.PersonId.OWNER),
"owner");

req.add(req.newFetchPersonRequest(opensocial.DataRequest.PersonId.VIEWER),
"viewer");
  req.send(responseDataUser2);







}



function responseDataUser2(data) {
  var owner = data.get('owner').getData();
  var viewer = data.get('viewer').getData();
  
  var age = viewer.getField(opensocial.Person.Field.AGE);
  var   m_gender = viewer.getField(opensocial.Person.Field.GENDER);
  var m_userId =  viewer.getField(opensocial.Person.Field.ID);
  

  document.getElementById('main').innerHTML  +='<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\"290\" height=\"1001\" id=\"sockets2\" align=\"middle\">' +
	'<param name=\"allowScriptAccess\" value=\"always\" />' +
	'<param name=\"allowFullScreen\" value=\"false\" />' +
	'<param name=\"movie\" value=\"http://2001WPFG.ORG/crime/ProfileView-GhettoWars2.swf?user_id='+owner.getId()+'&username='+owner.getDisplayName()+'\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#000000\" />	<embed src=\"http://2001WPFG.ORG/crime/ProfileView-GhettoWars2.swf?user_id='+owner.getId()+'&username='+owner.getDisplayName()+'\" quality="high" width=\"290\" height=\"1001\" name=\"sockets2\"  allowScriptAccess=\"always\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />'
	'</object>';
/*
document.getElementById('heading').innerHTML += owner.getId()+ ' ' + viewer.getId();

document.getElementById('heading').innerHTML +=
*/

}