// JavaScript Document





   var http_request = false;

    var flag="true";
var dtCh= "/";
var minYear=1900;
var maxYear=2100;

function numbersonly(myfield, e, dec)
{
var key;
var keychar;

if (window.event)
   key = window.event.keyCode;
else if (e)
   key = e.which;
else
   return true;
keychar = String.fromCharCode(key);

// control keys
if ((key==null) || (key==0) || (key==8) || 
    (key==9) || (key==13) || (key==27) )
   return true;

// numbers
else if ((("0123456789").indexOf(keychar) > -1))
   return true;

// decimal point jump
else if (dec && (keychar == "."))
   {
   myfield.form.elements[dec].focus();
   return false;
   }
else
   return false;
}




function isInteger(s){
	var i;
    for (i = 0; i < s.length; i++){   
        // Check that current character is number.
        var c = s.charAt(i);
        if (((c < "0") || (c > "9"))) return false;
    }
    // All characters are numbers.
    return true;
}

function stripCharsInBag(s, bag){
	var i;
    var returnString = "";
    // Search through string's characters one by one.
    // If character is not in bag, append to returnString.
    for (i = 0; i < s.length; i++){   
        var c = s.charAt(i);
        if (bag.indexOf(c) == -1) returnString += c;
    }
    return returnString;
}

function daysInFebruary (year){
	// February has 29 days in any year evenly divisible by four,
    // EXCEPT for centurial years which are not also divisible by 400.
    return (((year % 4 == 0) && ( (!(year % 100 == 0)) || (year % 400 == 0))) ? 29 : 28 );
}
function DaysArray(n) {
	for (var i = 1; i <= n; i++) {
		this[i] = 31
		if (i==4 || i==6 || i==9 || i==11) {this[i] = 30}
		if (i==2) {this[i] = 29}
   } 
   return this
}

function isDate(dtStr){
	var daysInMonth = DaysArray(12)
	var pos1=dtStr.indexOf(dtCh)
	var pos2=dtStr.indexOf(dtCh,pos1+1)
	var strDay=dtStr.substring(0,pos1)
	var strMonth=dtStr.substring(pos1+1,pos2)
	var strYear=dtStr.substring(pos2+1)
	strYr=strYear
	if (strDay.charAt(0)=="0" && strDay.length>1) strDay=strDay.substring(1)
	if (strMonth.charAt(0)=="0" && strMonth.length>1) strMonth=strMonth.substring(1)
	for (var i = 1; i <= 3; i++) {
		if (strYr.charAt(0)=="0" && strYr.length>1) strYr=strYr.substring(1)
	}
	month=parseInt(strMonth)
	day=parseInt(strDay)
	year=parseInt(strYr)
	if (pos1==-1 || pos2==-1){
		alert("The date format should be : dd/mm/yyyy")
		return false
	}
	if (strMonth.length<1 || month<1 || month>12){
		alert("Please enter a valid month")
		return false
	}
	if (strDay.length<1 || day<1 || day>31 || (month==2 && day>daysInFebruary(year)) || day > daysInMonth[month]){
		alert("Please enter a valid day")
		return false
	}
	if (strYear.length != 4 || year==0 || year<minYear || year>maxYear){
		alert("Please enter a valid 4 digit year between "+minYear+" and "+maxYear)
		return false
	}
	if (dtStr.indexOf(dtCh,pos2+1)!=-1 || isInteger(stripCharsInBag(dtStr, dtCh))==false){
		alert("Please enter a valid date")
		return false
	}
return true
}
function validateskyCareer()
{

	var vName=document.getElementById('txtName').value;
	var vDOB=document.getElementById('txtDOB').value;
	var vEmailID=document.getElementById('txtEmailID').value;
	var emailFilter=/(^[a-z]([a-z_\.]*)@([a-z_\.]*)([.][a-z]{3})$)|(^[a-z]([a-z_\.]*)@([a-z_\.]*)(\.[a-z]{2})(\.[a-z]{2})*$)/i;

	
	if(vName=="")
	{
		alert("Please Enter your Name");
		document.getElementById('txtName').focus();
		return false;
	}
	else if(vDOB=="")
	{
		alert("Please Enter your birth date");
		document.getElementById('txtDOB').focus();
		return false;
	}
	else if(vEmailID=="")
	{
		alert("Email id missing");
		document.getElementById('txtEmailID').focus();
		return false;
	
	}
	else if (!(emailFilter.test(vEmailID))) { 
       alert("Please enter a valid email address.\n");
	   document.getElementById('txtEmailID').focus();
	   return false;
	}
	else if (!(isDate(vDOB))){
		document.getElementById('txtDOB').focus();
		return false;
	}
	
	
}





   function makeRequest(url, parameters) {

      http_request = false;

      if (window.XMLHttpRequest) { // Mozilla, Safari,...

         http_request = new XMLHttpRequest();

         if (http_request.overrideMimeType) {

         	// set type accordingly to anticipated content type

            //http_request.overrideMimeType('text/xml');

            http_request.overrideMimeType('text/html');

         }

      } else if (window.ActiveXObject) { // IE

         try {

            http_request = new ActiveXObject("Msxml2.XMLHTTP");

         } catch (e) {

            try {

               http_request = new ActiveXObject("Microsoft.XMLHTTP");

            } catch (e) {}

         }

      }

      if (!http_request) {

         alert('Cannot create XMLHTTP instance');

         return false;

      }

      http_request.onreadystatechange = alertContents;

      http_request.open('GET', url + parameters, true);

      http_request.send(null);

   }



   function alertContents() {

      if (http_request.readyState == 4) {

         if (http_request.status == 200) {

            //alert(http_request.responseText);

            result = http_request.responseText;

            document.getElementById('myspan').innerHTML = result;            

         } else {

            alert('There was a problem with the request.');

         }

      }

   }

   

  /* function get(obj) {

      var getstr = "?";

	 

      for (i=0; i<obj.childNodes.length; i++) {

         if (obj.childNodes[i].tagName == "INPUT") {

            if (obj.childNodes[i].type == "text")

			{

				

				if( obj.childNodes[i].disabled==false)

				{

					if( obj.childNodes[i].value=="")

					{

					//alert( obj.childNodes[i].name+" field cannot be left blank.");

							obj.childNodes[i].focus();

					//flag="false";

							break

					}

					else

					{

              			 getstr += obj.childNodes[i].name + "=" + obj.childNodes[i].value + "&";

					}

				}

            }

            if (obj.childNodes[i].type == "checkbox") {

               if (obj.childNodes[i].checked) {

                  getstr += obj.childNodes[i].name + "=" + obj.childNodes[i].value + "&";

               } else {

                  getstr += obj.childNodes[i].name + "=&";

               }

            }

            if (obj.childNodes[i].type == "radio") {

               if (obj.childNodes[i].checked) {

                  getstr += obj.childNodes[i].name + "=" + obj.childNodes[i].value + "&";

               }

            }

			if (obj.childNodes[i].type == "file") {

               getstr += obj.childNodes[i].name + "=" + obj.childNodes[i].type + "&";

            }

         }   

         if (obj.childNodes[i].tagName == "SELECT") {

            var sel = obj.childNodes[i];

            getstr += sel.name + "=" + sel.options[sel.selectedIndex].value + "&";

         }

         if (obj.childNodes[i].tagName == "TEXTAREA") {

			 if( obj.childNodes[i].value=="")

				{

					//alert("Message field cannot be left blank.");

					obj.childNodes[i].focus();

					//flag="false";

					break

				}

				else

				{

             getstr += obj.childNodes[i].name + "=" + obj.childNodes[i].value + "&";

				}

         }

      }

	  if(flag=="true")

	  {

		//  alert(flag);

     makeRequest('get1.php', getstr);

	  }

   }
*/



function equalizeHeight()
{
		var myHeight ;
	myHeight = document.getElementById('branding_collateral_M').clientHeight;
	document.getElementById('branding_collateral_L').height=myHeight;
	document.getElementById('branding_collateral_R').height=myHeight;
		
	
	myHeight = document.getElementById('print_caption_M').clientHeight;
	document.getElementById('print_caption_L').height=myHeight;
	document.getElementById('print_caption_R').height=myHeight;
	
	myHeight = document.getElementById('print_M').clientHeight;
	document.getElementById('print_L').height=myHeight;
	document.getElementById('print_R').height=myHeight;
	
	myHeight = document.getElementById('space_graphics_caption_M').clientHeight;
	document.getElementById('space_graphics_caption_L').height=myHeight;
	document.getElementById('space_graphics_caption_R').height=myHeight;
	
	myHeight = document.getElementById('space_graphics_M').clientHeight;
	document.getElementById('space_graphics_L').height=myHeight;
	document.getElementById('space_graphics_R').height=myHeight;
	
	myHeight = document.getElementById('product_design_caption_M').clientHeight;
	document.getElementById('product_design_caption_L').height=myHeight;
	document.getElementById('product_design_caption_R').height=myHeight;
	
	myHeight = document.getElementById('product_design_M').clientHeight;
	document.getElementById('product_design_L').height=myHeight;
	document.getElementById('product_design_R').height=myHeight;

	myHeight = document.getElementById('miscellaneous_caption_M').clientHeight;
	document.getElementById('miscellaneous_caption_L').height=myHeight;
	document.getElementById('miscellaneous_caption_R').height=myHeight;

	myHeight = document.getElementById('miscellaneous_M').clientHeight;
	document.getElementById('miscellaneous_L').height=myHeight;
	document.getElementById('miscellaneous_R').height=myHeight;

	myHeight = document.getElementById('skyinteractive_header_M').clientHeight;
	document.getElementById('skyinteractive_header_L').height=myHeight;
	document.getElementById('skyinteractive_header_R').height=myHeight;

	myHeight = document.getElementById('brand_website_caption_M').clientHeight;
	document.getElementById('brand_website_caption_L').height=myHeight;
	document.getElementById('brand_website_caption_R').height=myHeight;
	
	myHeight = document.getElementById('brand_website_M').clientHeight;
	document.getElementById('brand_website_L').height=myHeight;
	document.getElementById('brand_website_R').height=myHeight;
	
	myHeight = document.getElementById('company_website_caption_M').clientHeight;
	document.getElementById('company_website_caption_L').height=myHeight;
	document.getElementById('company_website_caption_R').height=myHeight;

	myHeight = document.getElementById('company_website_M').clientHeight;
	document.getElementById('company_website_L').height=myHeight;
	document.getElementById('company_website_R').height=myHeight;
	
	
	myHeight = document.getElementById('film_websites_caption_M').clientHeight;
	document.getElementById('film_websites_caption_L').height=myHeight;
	document.getElementById('film_websites_caption_R').height=myHeight;
	
	myHeight = document.getElementById('film_websites_M').clientHeight;
	document.getElementById('film_websites_L').height=myHeight;
	document.getElementById('film_websites_R').height=myHeight;
	
	
	myHeight = document.getElementById('portals_caption_M').clientHeight;
	document.getElementById('portals_caption_L').height=myHeight;
	document.getElementById('portals_caption_R').height=myHeight;
	
	
	myHeight = document.getElementById('portals_M').clientHeight;
	document.getElementById('portals_L').height=myHeight;
	document.getElementById('portals_R').height=myHeight;
	
	
	myHeight = document.getElementById('campaigns_virals_caption_M').clientHeight;
	document.getElementById('campaigns_virals_caption_L').height=myHeight;
	document.getElementById('campaigns_virals_caption_R').height=myHeight;
	
	
	
	myHeight = document.getElementById('campaigns_virals_M').clientHeight;
	document.getElementById('campaigns_virals_L').height=myHeight;
	document.getElementById('campaigns_virals_R').height=myHeight;
	
	
	myHeight = document.getElementById('games_caption_M').clientHeight;
	document.getElementById('games_caption_L').height=myHeight;
	document.getElementById('games_caption_R').height=myHeight;
	
	myHeight = document.getElementById('games_M').clientHeight;
	document.getElementById('games_L').height=myHeight;
	document.getElementById('games_R').height=myHeight;
	
	
	myHeight = document.getElementById('online_advertising_caption_M').clientHeight;
	document.getElementById('online_advertising_caption_L').height=myHeight;
	document.getElementById('online_advertising_caption_R').height=myHeight;


	myHeight = document.getElementById('online_advertising_M').clientHeight;
	document.getElementById('online_advertising_L').height=myHeight;
	document.getElementById('online_advertising_R').height=myHeight;
	
	
	myHeight = document.getElementById('skygoodies_header_M').clientHeight;
	document.getElementById('skygoodies_header_L').height=myHeight;
	document.getElementById('skygoodies_header_R').height=myHeight;

	myHeight = document.getElementById('skygoodies_blank_M').clientHeight;
	document.getElementById('skygoodies_blank_L').height=myHeight;
	document.getElementById('skygoodies_blank_R').height=myHeight;

	myHeight = document.getElementById('goodies_games_caption_M').clientHeight;
	document.getElementById('goodies_games_caption_L').height=myHeight;
	document.getElementById('goodies_games_caption_R').height=myHeight;

	myHeight = document.getElementById('goodies_games_M').clientHeight;
	document.getElementById('goodies_games_L').height=myHeight;
	document.getElementById('goodies_games_R').height=myHeight;


/*



	/*var myHeight ; 
	for (i=1; i<=85; i++)
	{
		myHeight = document.getElementById('MR'+i).clientHeight;
		//alert("ROW: "+i+" height: "+myHeight);
		document.getElementById('LR'+i).height=myHeight;
		document.getElementById('RR'+i).height=myHeight;
		
	}
	myHeight = document.getElementById('MR18_a').clientHeight;
	document.getElementById('LR18_a').height=myHeight;
	document.getElementById('RR18_a').height=myHeight;
	
	myHeight = document.getElementById('MR18_b').clientHeight;
	document.getElementById('LR18_b').height=myHeight;
	document.getElementById('RR18_b').height=myHeight;
	
	
	
	myHeight = document.getElementById('MR32_B').clientHeight;
	document.getElementById('LR32_B').height=myHeight;
	document.getElementById('RR32_B').height=myHeight;
	myHeight = document.getElementById('MR32_C').clientHeight;
	document.getElementById('LR32_C').height=myHeight;
	document.getElementById('RR32_C').height=myHeight;
	myHeight = document.getElementById('MR32_D').clientHeight;
	document.getElementById('LR32_D').height=myHeight;
	document.getElementById('RR32_D').height=myHeight;
	
	
	
	//	
	
	/*var myHeight = document.getElementById('element1').clientHeight;
	alert(myHeight);
	document.getElementById("element2").height=myHeight;*/
}


function displayExperiencedField()

{

	//if(document.myform.Graduate.value=="No")

	//{

		document.myform.workexpYears.disabled=false;

		document.myform.workexpMonth.disabled=false;

		document.myform.prevSalary.disabled=false;

	//}

}

function disabledExperiencedField()

{

	//if(document.myform.Graduate.value=="No")

	//{

		document.myform.workexpYears.value="";

		document.myform.workexpMonth.value="";

		document.myform.prevSalary.value="";

		

		document.myform.workexpYears.disabled=true;

		document.myform.workexpMonth.disabled=true;

		document.myform.prevSalary.disabled=true;

	//}

}



function enterNumber(num1,num2){

	document.write("<select>");

	for(i=num1;i<num2;i++)

	{

		document.write("<option>"+i+"</option>");

	}

	document.write("</select>");

}

function SelectDate()

{

	D = document.getElementById('txtDOB').value;

	if(D){

		D = D.split('/');

	}else{

		Dat = new Date();

		D = new Array(Dat.getDay(), Dat.getMonth(), Dat.getFullYear());

	}

	win = window.open("date-picker.html","win","status=no,scrollbars=no,toolbar=no,menubar=no,height=150,width=150");

	if (parseInt(navigator.appVersion) == 2 && navigator.appName == "Netscape")

		win = window.open("date-picker.html","win","status=yes,height=325,width=250");

		//win'MakeDate',D[2], D[1],D[0], 'SetDate');

		win.MakeDate(D[2], D[1], D[0]);

}

function SetDate(Day, Month, Year)

{

	document.getElementById('txtDOB').value = Day + '/' + Month + '/' + Year;

}

function displayMenu(inputurl){

	

if(inputurl=="work")

{

	

	

	//var txt='<table width="980" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000"><tr><td width="192" height="22" class="main_menu">&nbsp;&nbsp;PRINT</td><td width="5" bgcolor="#E0E0E1">&nbsp;</td><td width="192" class="main_menu">&nbsp;&nbsp;BRANDING & COLLATERAL</td><td width="5" bgcolor="#E0E0E1">&nbsp;</td><td width="192" class="main_menu">&nbsp;&nbsp;SPACE GRAPHICS</td><td width="5" bgcolor="#E0E0E1">&nbsp;</td><td width="192" class="main_menu">&nbsp;&nbsp;PRODUCT DESIGN</td><td width="5" bgcolor="#E0E0E1">&nbsp;</td><td width="192" class="main_menu">&nbsp;&nbsp;MISCELLANEOUS</td></tr></table>';

	var txt='<table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#E0E0E1"><td width="184"  bgcolor="#3DBCE9" class="main_menu" valign="middle" id="m_brand"    height="22"  align="center"><a href="javascript:work_brand(&quot;link16&quot;);">BRANDING &amp; COLLATERAL</a></td> <td>&nbsp;</td></tr></table>';

	

	document.getElementById("sub_top_center_menu").innerHTML=txt;

	document.getElementById("sub_top_left_menu").style.backgroundColor='#E0E0E1';

	document.getElementById("sub_top_right_menu").style.backgroundColor='#E0E0E1';

	

	document.getElementById("extraleftSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr> <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td id="branding_collateral_L">&nbsp;</td> </tr> <tr bgcolor="#E0E0E1"> <td id="print_caption_L">&nbsp;</td> </tr> <tr> <td id="print_L">&nbsp;</td>  </tr> <tr bgcolor="#E0E0E1">  <td id="space_graphics_caption_L">&nbsp;</td></tr> <tr><td id="space_graphics_L">&nbsp;</td> </tr>  <tr bgcolor="#E0E0E1"><td id="product_design_caption_L">&nbsp;</td></tr> <tr><td id="product_design_L">&nbsp;</td> </tr> <tr bgcolor="#E0E0E1">  <td id="miscellaneous_caption_L">&nbsp;</td></tr> <tr><td id="miscellaneous_L">&nbsp;</td></tr><tr bgcolor="#000000"> <td id="skyinteractive_header_L">&nbsp;</td></tr> <tr bgcolor="#3d3d3f"> <td id="brand_website_caption_L">&nbsp;</td> </tr> <tr bgcolor="#000000">  <td id="brand_website_L">&nbsp;</td></tr><tr bgcolor="#3d3d3f"> <td id="company_website_caption_L">&nbsp;</td></tr><tr bgcolor="#000000"> <td id="company_website_L">&nbsp;</td> </tr><tr bgcolor="#3d3d3f"> <td id="film_websites_caption_L">&nbsp;</td> </tr><tr bgcolor="#000000"> <td id="film_websites_L">&nbsp;</td></tr><tr bgcolor="#3d3d3f"> <td id="portals_caption_L">&nbsp;</td> </tr> <tr bgcolor="#000000"><td id="portals_L">&nbsp;</td> </tr> <tr bgcolor="#3d3d3f"> <td id="campaigns_virals_caption_L">&nbsp;</td> </tr> <tr> <td id="campaigns_virals_L" bgcolor="#000000">&nbsp;</td></tr> <tr bgcolor="#3d3d3f"> <td id="games_caption_L">&nbsp;</td></tr><tr bgcolor="#000000"> <td id="games_L">&nbsp;</td></tr> <tr bgcolor="#3d3d3f"> <td id="online_advertising_caption_L">&nbsp;</td> </tr> <tr bgcolor="#000000"> <td id="online_advertising_L">&nbsp;</td> </tr> <tr> <td id="skygoodies_header_L" style="background-image:url(Sky_Logo/skygoodies_bg.jpg); background-repeat: repeat-x;">&nbsp;</td> </tr> <tr> <td id="skygoodies_blank_L">&nbsp;</td> </tr><tr  bgcolor="#E0E0E1"> <td id="goodies_games_caption_L">&nbsp;</td></tr><tr><td id="goodies_games_L">&nbsp;</td></tr></table></td></tr></table>';

	

	document.getElementById("extraBottomSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr>  <td id="branding_collateral_R">&nbsp;</td> </tr> <tr bgcolor="#E0E0E1"> <td id="print_caption_R">&nbsp;</td> </tr> <tr> <td id="print_R">&nbsp;</td>  </tr> <tr bgcolor="#E0E0E1">  <td id="space_graphics_caption_R">&nbsp;</td> </tr> <tr>  <td id="space_graphics_R">&nbsp;</td> </tr>  <tr bgcolor="#E0E0E1"><td id="product_design_caption_R">&nbsp;</td> </tr> <tr>  <td id="product_design_R">&nbsp;</td> </tr> <tr bgcolor="#E0E0E1">  <td id="miscellaneous_caption_R">&nbsp;</td> </tr> <tr> <td id="miscellaneous_R">&nbsp;</td></tr><tr bgcolor="#000000"> <td id="skyinteractive_header_R">&nbsp;</td> </tr> <tr bgcolor="#3d3d3f"> <td id="brand_website_caption_R"></td> </tr> <tr bgcolor="#000000"><td id="brand_website_R">&nbsp;</td>  </tr> <tr bgcolor="#3d3d3f"> <td id="company_website_caption_R">&nbsp;</td></tr><tr bgcolor="#000000"> <td id="company_website_R">&nbsp;</td> </tr> <tr bgcolor="#3d3d3f"> <td id="film_websites_caption_R">&nbsp;</td> </tr><tr bgcolor="#000000"> <td id="film_websites_R">&nbsp;</td></tr><tr bgcolor="#3d3d3f"> <td id="portals_caption_R">&nbsp;</td> </tr bgcolor="#000000"> <tr><td id="portals_R" bgcolor="#000000">&nbsp;</td> </tr> <tr bgcolor="#3d3d3f"> <td id="campaigns_virals_caption_R">&nbsp;</td> </tr> <tr bgcolor="#000000"> <td id="campaigns_virals_R">&nbsp;</td></tr> <tr bgcolor="#3d3d3f"> <td id="games_caption_R">&nbsp;</td></tr><tr bgcolor="#000000"> <td id="games_R">&nbsp;</td></tr> <tr bgcolor="#3d3d3f"> <td id="online_advertising_caption_R">&nbsp;</td> </tr> <tr bgcolor="#000000"> <td id="online_advertising_R">&nbsp;</td> </tr> <tr> <td id="skygoodies_header_R" style="background-image:url(Sky_Logo/skygoodies_bg.jpg); background-repeat: repeat-x;"></td> </tr> <tr> <td id="skygoodies_blank_R">&nbsp;</td> </tr><tr  bgcolor="#E0E0E1"> <td id="goodies_games_caption_R">&nbsp;</td></tr><tr><td id="goodies_games_R">&nbsp;</td></tr></table></td></tr></table>';

	document.getElementById("main_content").innerHTML='<table width="980" border="0" cellspacing="0" cellpadding="0"><tr> <td valign="top"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr><td id="branding_collateral_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link16&quot;)"><img src="Sky_Logo/MnG_sky_log.jpg" alt="Mobile n Gadgets" width="183" height="132" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link3&quot;)"><img src="Sky_Logo/Blackmagic_sky_logo.jpg" alt="Black Magic Motion Pictures Ltd." width="183" height="144" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="javascript:work_brand(&quot;link5&quot;)"><img src="Sky_Logo/Controlprint_sky_logo.jpg" alt="Control Print" width="183" height="137" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link2&quot;)"><img src="Sky_Logo/Gingerwater_sky_logo.jpg" alt="Gingerwater Films" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link1&quot;)"><img src="Sky_Logo/Novanettech_sky_logo.jpg" alt="Novanet Technologies" width="183" height="137" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr><tr> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link19&quot;)"><img src="Sky_Logo/citybliss_sky_logo.jpg" alt="Citybliss" width="183" height="136" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link18&quot;)"><img src="Sky_Logo/canvas_brand_sky_logo.jpg" alt="Canvas" width="183" height="136" border="0" /></a></td> <td>&nbsp;</td>  <td valign="top" align="left"><a href="javascript:work_brand(&quot;link15&quot;)"><img src="Sky_Logo/Brocade_sky_log.jpg" alt="Brocade" width="183" height="134" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link9&quot;)"><img src="Sky_Logo/Rameshshimpy_sky_logo.jpg" alt="Ramesh Sippy Entertainment" width="183" height="135" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link17&quot;)"><img src="Sky_Logo/Queens_sky_log.jpg" alt="Queens" width="183" height="134" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link4&quot;)"><img src="Sky_Logo/Viaearth_sky_logo.jpg" alt="Via Earth Films stationery" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link14&quot;)"><img src="Sky_Logo/GLD_sky_log.jpg" alt="GLD Jewels" width="179" height="139" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link6&quot;)"><img src="Sky_Logo/Planbfilm_sky_logo.jpg" alt="Plan B Films" width="183" height="135" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link7&quot;)"><img src="Sky_Logo/Sprit_sky_logo.jpg" alt="Spirit Films" width="183" height="135" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="javascript:work_brand(&quot;link13&quot;)"><img src="Sky_Logo/Yogacara_sky_log.jpg" alt="Yogacara" width="183" height="135" border="0" /></a></td>  </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td>  </tr> <tr>  <td valign="top" align="left"><a href="javascript:work_brand(&quot;link8&quot;)"><img src="Sky_Logo/Paganleather_sky_logo.jpg" alt="Pagan Leather Accessories" width="183" height="135" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_brand(&quot;link10&quot;)"><img src="Sky_Logo/Redchilles_sky_logo.jpg" alt="Redchillies VFX" width="183" height="135" border="0" /></a></td> <td>&nbsp;</td>  <td valign="top" align="left"><a href="javascript:work_brand(&quot;link12&quot;)"><img src="Sky_Logo/Flowers_sky_logo.jpg" alt="Valley of Flowers (movie)" width="183" height="128" border="0" /></a></td> <td>&nbsp;</td>  <td valign="top" align="left">&nbsp;</td> <td>&nbsp;</td> <td valign="top" align="left">&nbsp;</td> </tr><tr> <td valign="top" align="left">&nbsp;</td> <td>&nbsp;</td> <td valign="top" align="left">&nbsp;</td> <td>&nbsp;</td>  <td valign="top" align="left">&nbsp;</td> <td>&nbsp;</td> <td valign="top" align="left">&nbsp;</td> <td>&nbsp;</td><td valign="top" align="left">&nbsp;</td> </tr></table></td> </tr><tr> <td valign="top" align="left" id="print_caption_M"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#E0E0E1"><td width="65" height="22" class="main_menu" bgcolor="#3DBCE9" align="center"><a href="javascript:work_print(&quot;link20&quot;);">PRINT</a></td><td>&nbsp;</td></tr></table></td></tr> <tr> <td  id="print_M"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="javascript:work_print(&quot;link24&quot;)"><img src="Sky_Logo/relMetro_print_sky_logo.jpg" alt="Manuals for Magic Bus India" width="183" height="147" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link1&quot;)"><img src="Sky_Logo/Walkingwithangle_sky_logo.jpg" alt="Walking with Angels" width="183" height="131" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link25&quot;)"><img src="Sky_Logo/relDirect_print_sky_logo.jpg" alt="Manuals for Magic Bus India" width="183" height="147" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link26&quot;)"><img src="Sky_Logo/noPaper_print_sky_logo.jpg" alt="Manuals for Magic Bus India" width="183" height="147" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link23&quot;)"><img src="Sky_Logo/cdp_print_sky_logo1.jpg" alt="Booklet for Reliance" width="183" height="137" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr>  <td valign="top" align="left"><a href="javascript:work_print(&quot;link1a&quot;)"><img src="Sky_Logo/comedy_print_sky_logo.jpg" alt="The Comedy Store" width="183" height="131" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="javascript:work_print(&quot;link20&quot;)"><img src="Sky_Logo/magicbus_print_sky_logo.jpg" alt="Manuals for Magic Bus India" width="183" height="147" border="0" /></a></td><td>&nbsp;</td>  <td valign="top" align="left"><a href="javascript:work_print(&quot;link2&quot;)"><img src="Sky_Logo/Flyers_sky_logo.jpg" alt="Flyers for TV shows" width="183" height="131" border="0" /></a></td>  <td>&nbsp;</td>  <td valign="top" align="left"><a href="javascript:work_print(&quot;link3&quot;)"><img src="Sky_Logo/Walkingingoa_sky_logo.jpg" alt="Walking in and around Panaji, Goa" width="183" height="147" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link3a&quot;)"><img src="Sky_Logo/Shaze_tbz1.jpg" alt="Marketing Collateral for TBZ-NZ &amp; Shaz&eacute;" width="183" height="147" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td></tr> <tr> <td valign="top" align="left"><a href="javascript:work_print(&quot;link21&quot;)"><img src="Sky_Logo/canvas_brand_sky_logo.jpg" alt="Canvas" width="183" height="136" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link5&quot;)"><img src="Sky_Logo/Presentation_sky_logo.jpg" alt="Presentation brochure for Via Earth" width="183" height="147" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link6&quot;)"><img src="Sky_Logo/Spritincolony_sky_logo.jpg" alt="Visualisation for films (Spring in the Colony)" width="183" height="145" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link7&quot;)"><img src="Sky_Logo/Ghost_sky_logo.jpg" alt="Visualisation for films (Ghost Ghost Na Raha)" width="183" height="145" border="0" /></a></td><td>&nbsp;</td><td valign="top" align="left"><a href="javascript:work_print(&quot;link4&quot;)"><img src="Sky_Logo/Mojoadvertise_sky_logo.jpg" alt="Mojo Cases, Posters &amp; Print Advertisements" width="183" height="147" border="0" /></a></td> </tr> <tr>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td>  </tr><tr> <td valign="top" align="left"><a href="javascript:work_print(&quot;link7a&quot;)"><img src="Sky_Logo/Novneettechnology_sky_logo.jpg" alt="Novanet Technologies" width="183" height="136" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link22&quot;)"><img src="Sky_Logo/citybliss_icon2.jpg" alt="Citybliss" width="183" height="136" border="0" /></a></td> <td>&nbsp;</td>   <td valign="top" align="left"><a href="javascript:work_print(&quot;link7b&quot;)"><img src="Sky_Logo/Control_print_sky_logo.jpg" alt="Control Print" width="183" height="136" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link8&quot;)"><img src="Sky_Logo/WilightTreasure_sky_logo.jpg" alt="Twilight Treasures" width="183" height="136" border="0" /></a></td>  <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link9&quot;)"><img src="Sky_Logo/Mudskippers_sky_logo.jpg" alt="A Mudskipper&raquo;s Memories" width="183" height="129" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td>  <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr>  <tr> <td valign="top" align="left"><a href="javascript:work_print(&quot;link10&quot;)"><img src="Sky_Logo/ShillongChamber_sky_logo.jpg" alt="Shillong Chamber Choir DVD cover" width="183" height="145" border="0" /></a></td> <td>&nbsp;</td>  <td valign="top" align="left"><a href="javascript:work_print(&quot;link11&quot;)"><img src="Sky_Logo/Parmal2007_sky_logo.jpg" alt="Parmal 2007" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td>  <td valign="top" align="left"><a href="javascript:work_print(&quot;link12&quot;)"><img src="Sky_Logo/Parmal2005_sky_logo.jpg" alt="Parmal 2006" width="183" height="129" border="0" /></a></td>  <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link13&quot;)"><img src="Sky_Logo/Parmal_2005_sky_logo.jpg" alt="Parmal 2005" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td>  <td valign="top" align="left"><a href="javascript:work_print(&quot;link19&quot;)"><img src="Sky_Logo/Parmal2004_sky_logo.jpg" alt="Parmal 2004" width="183" height="129" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>  </tr> <tr> <td valign="top" align="left"><a href="javascript:work_print(&quot;link15&quot;)"><img src="Sky_Logo/BeastlyTales1_sky_logo.jpg" alt="Beastly Tales 1" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link15b&quot;)"><img src="Sky_Logo/BeastlyTales2_sky_logo.jpg" alt="Beastly Tales 2" width="183" height="129" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link17&quot;)"><img src="Sky_Logo/TravelDiary_sky_logo.jpg" alt="Travel Diary" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link18&quot;)"><img src="Sky_Logo/Toteontheturf_sky_logo.jpg" alt="Tote on the turf - Poster" width="183" height="128" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_print(&quot;link19&quot;)"><img src="Sky_Logo/siddharthwedsArzoo_sky_logo.jpg" alt="Wedding Card" width="183" height="128" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </table></td> </tr> <tr> <td id="space_graphics_caption_M"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#E0E0E1"><td  width="137" height="22" class="main_menu" bgcolor="#3DBCE9" align="center"><a href="javascript:work_space(&quot;link5&quot;);">SPACE GRAPHICS</a></td><td>&nbsp;</td></tr></table></td> </tr> <tr> <td id="space_graphics_M"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr>  <td width="183">&nbsp;</td> <td>&nbsp;</td><td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td>  <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> </tr> <tr>  <td valign="top" align="left"><a href="javascript:work_space(&quot;link5&quot;)"><img src="Sky_Logo/math_gfx_sky_logo.jpg" alt="Space Olympiad Foundation Office Graphics" width="183" height="152" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_space(&quot;link1&quot;)"><img src="Sky_Logo/MojoExhibition_sky_logo.jpg" alt="Mojo Exhibition" width="183" height="128" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="javascript:work_space(&quot;link2&quot;)"><img src="Sky_Logo/SLGsystel_sky_logo.jpg" alt="KLG Systel Office Graphics" width="183" height="128" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_space(&quot;link3&quot;)"><img src="Sky_Logo/BhartiBhavan_sky_logo.jpg" alt="Bharati Bhawan Maral" width="183" height="128" border="0" /></a></td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </table></td> </tr><tr> <td id="product_design_caption_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#E0E0E1"><td width="144" height="22" class="main_menu" bgcolor="#3DBCE9" align="center"><a href="javascript:work_product(&quot;link1&quot;)">PRODUCT DESIGN</a></td><td>&nbsp;</td></tr></table></td></tr> <tr> <td id="product_design_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td><td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td></tr> <tr><td valign="top" align="left"><a href="javascript:work_product(&quot;link1&quot;)"><img src="Sky_Logo/Merchandise_sky_logo.jpg" alt="Merchandise for Smirnoff" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="javascript:work_product(&quot;link2&quot;)"><img src="Sky_Logo/ModularKiosk_sky_logo.jpg" alt="Modular Kiosk" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_product(&quot;link3&quot;)"><img src="Sky_Logo/DoorHandle_sky_logo.jpg" alt="Door handles for Valli &amp; Valli" width="183" height="129" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="javascript:work_product(&quot;link5&quot;)"><img src="Sky_Logo/ConsultancyDMA_sky_logo.jpg" alt="Consultancy fo DMA Branding" width="183" height="143" border="0" /></a></td><td>&nbsp;</td><td valign="top" align="left"><a href="javascript:work_product(&quot;link6&quot;)"><img src="Sky_Logo/ConsultancyYellow_sky_logo.jpg" alt="Consultancy for Yellow resources" width="183" height="143" border="0" /></a></td> </tr><tr> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </table></td></tr> <tr> <td id="miscellaneous_caption_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr  bgcolor="#E0E0E1"><td  width="140" height="22" class="main_menu" bgcolor="#3DBCE9"  align="center"><a href="javascript:work_misc(&quot;link1&quot;)">MISCELLANEOUS</a></td><td>&nbsp;</td></tr></table></td></tr> <tr> <td id="miscellaneous_M"><table width="980" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="183">&nbsp;</td> <td>&nbsp;</td><td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td><td width="183">&nbsp;</td> <td>&nbsp;</td><td width="183">&nbsp;</td> </tr> <tr>  <td valign="top" align="left"><a href="javascript:work_misc(&quot;link1&quot;)"><img src="Sky_Logo/Tshirt_sky_logo.jpg" alt="T-shirts" width="183" height="128" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_misc(&quot;link2&quot;)"><img src="Sky_Logo/BahekFrontDesign-sky_logo.jpg" alt="Bahek- font design" width="183" height="128" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_misc(&quot;link4&quot;)"><img src="Sky_Logo/PhocusWright_sky_logo.jpg" alt="Phocus Wright presentation" width="183" height="127" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="javascript:work_misc(&quot;link5&quot;)"><img src="Sky_Logo/IciciBankTV_sky_logo.jpg" alt="ICICI Bank TV commercial" width="182" height="127" border="0" /></a></td>  <td>&nbsp;</td> <td valign="top" align="left">&nbsp;</td> </tr> <tr><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </table></td> </tr> <tr><td valign="top" align="left" id="skyinteractive_header_M" style="background-color:#000;"><table width="980" border="0" cellspacing="0" cellpadding="0"> <tr> <td>&nbsp;</td> </tr><tr> <td><img src="Sky_Images/skyinteractive_homepg_top_banner.jpg" alt="SKY INTERACTIVE" width="949" height="182" border="0" usemap="#MapSkyinteractive"  /></td> </tr> <tr><td>&nbsp;</td></tr></table></td> </tr><tr><td id="brand_website_caption_M" valign="top" align="left"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#3d3d3f"><td width="110" height="22" bgcolor="#3DBCE9" class="main_menu" style="padding:0px 15px;"><a href="skyinteractive.php?lnk=work-brand_websites-link1a" target="_blank">BRAND WEBSITES</a></td>  <td>&nbsp;</td></tr></table></td> </tr><tr><td id="brand_website_M" style="background-color:#000000;"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr> <td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td><td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link1a" target="_blank"><img src="Interactive_logo/Comedy_sky_logo.jpg" alt="The Comedy Store" width="171" height="124" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link1" target="_blank"><img src="Interactive_logo/Pallate_sky_logo.gif" alt="Pallate" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link2" target="_blank"><img src="Interactive_logo/Indigo_sky_logo.gif" alt="Indigo" width="171" height="124" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link3" target="_blank"><img src="Interactive_logo/Moveablefeast_sky_logo.gif" alt="Moveable Feast" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link4" target="_blank"><img src="Interactive_logo/RimoExpenditions_sky_logo.gif" alt="Rimo Expeditions" width="171" height="124" border="0" /></a></td> </tr> <tr><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link10" target="_blank"><img src="Interactive_logo/citybliss_sky_logo.gif" alt="Citybliss" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link5" target="_blank"><img src="Interactive_logo/Mojo_sky_logo.gif" alt="Mojo" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link6" target="_blank"><img src="Interactive_logo/Mocha_sky_logo.gif" alt="Mocha" width="171" height="124" border="0" /></a></td><td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link7" target="_blank"><img src="Interactive_logo/NovanetTechnology_sky_logo.gif" alt="Novanet Technologies" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link11" target="_blank"><img src="Interactive_logo/shaze_silver_sky_logo.jpg" alt="Shaze Sterling" width="171" height="138" border="0" /></a></td> </tr> <tr><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link8" target="_blank"><img src="Interactive_logo/Vitasta_sky_logo.gif" alt="Vitasta" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-brand_websites-link9" target="_blank"><img src="Interactive_logo/IndigoDell_sky_logo.gif" alt="Indigo Deli" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td>  </tr> </table></td> </tr><tr><td id="company_website_caption_M" valign="top" align="left"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#3d3d3f"><td width="150" height="22" bgcolor="#3DBCE9" class="main_menu" align="center"><a href="skyinteractive.php?lnk=work-company_websites-link1" target="_blank">COMPANY WEBSITES</a></td>  <td>&nbsp;</td></tr></table></td> </tr> <tr> <td valign="top" align="left" style="background-color:#000000;" id="company_website_M"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr> <td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> </tr> <tr>  <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link1" target="_blank"><img src="Interactive_logo/monsoon_sky_logo.gif" alt="Monsoon Film" width="171" height="124" border="0" /></a></td><td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link2" target="_blank"><img src="Interactive_logo/Bababroadcasting_sky_logo.gif" alt="Bawa Broadcating" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link3" target="_blank"><img src="Interactive_logo/ViaEarth_sky_logo.gif" alt="Via Earth Film" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link4" target="_blank"><img src="Interactive_logo/GingerWarerfilms2007_sky_logo.jpg" alt="Ginger Water Films 2007" width="171" height="124" border="0" /></a></td>  <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link18" target="_blank"><img src="Interactive_logo/GingerWarerfilms2011_sky_logo.jpg" alt="Ginger Water Films 2011" width="171" height="138" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link4a" target="_blank"><img src="Interactive_logo/Flyingsoucher_sky_logo.gif" alt="Flying Saucer" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link5" target="_blank"><img src="Interactive_logo/Redchillies_sky_logo.gif" alt="Readchillies VFX" width="171" height="124" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link6" target="_blank"><img src="Interactive_logo/Rameshshimppy_sky_logo.gif" alt="Rames Sippy Entertainment" width="171" height="124" border="0" /></a></td><td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link7" target="_blank"><img src="Interactive_logo/EquinoxFilms-sky_logo.gif" alt="Equinox Films" width="171" height="124" border="0" /></a></td><td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link8" target="_blank"><img src="Interactive_logo/ParlyAgro_sky_logo.gif" alt="Parle Agro" width="171" height="124" border="0" /></a></td> </tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> </tr>  <tr> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link9" target="_blank"><img src="Interactive_logo/ControlPrint_sky_logo.gif" alt="Control Print" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link10" target="_blank"><img src="Interactive_logo/Dgustibus_sky_logo.gif" alt="deGustibus Hospitality" width="171" height="128" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link20" target="_blank"><img src="Interactive_logo/gs_sky_logo.jpg" alt="G. S. Entertainment" width="171" height="126" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link11" target="_blank"><img src="Interactive_logo/Phat_phish.gif" alt="Phat Phish (archived)" width="171" height="128" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link12" target="_blank"><img src="Interactive_logo/MananApparels_sky_logo.jpg" alt="Manan Apparels" width="171" height="126" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr>  <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link13" target="_blank"><img src="Interactive_logo/Heritage_sky_logo.gif" alt="The Heritage Network" width="171" height="128" border="0" /></a></td> <td>&nbsp;</td>  <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link14" target="_blank"><img src="Interactive_logo/HetaPandit_sky_logo.jpg" alt="Heta Pandit" width="171" height="125" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-company_websites-link15" target="_blank"><img src="Interactive_logo/SmartTee_sky_logo.gif" alt="Smartee t-shirts" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left">&nbsp;</td> <td>&nbsp;</td> <td valign="top" align="left">&nbsp;</td> </tr><tr><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </table></td> </tr><tr> <td id="film_websites_caption_M"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#3d3d3f"><td  width="120" height="22" class="main_menu" bgcolor="#3DBCE9" align="center"><a href="skyinteractive.php?lnk=work-film_websites-link1" target="_blank">FILM WEBSITES</a></td><td>&nbsp;</td></tr></table></td> </tr> <tr> <td id="film_websites_M" valign="top" align="left" style="background-color:#000000"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td>  </tr> <tr> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-film_websites-link1" target="_blank"><img src="Interactive_logo/BlackFriday_sky_logo.gif" alt="Black Friday" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-film_websites-link2" target="_blank"><img src="Interactive_logo/VallayofFlower_sky_logo.gif" alt="Valley of Flowers" width="171" height="124" border="0" /></a></td><td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-film_websites-link3" target="_blank"><img src="Interactive_logo/Zizou_sky_logo.gif" alt="Little Zizou" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-film_websites-link4" target="_blank"><img src="Interactive_logo/Buddha_sky_logo.gif" alt="Buddha" width="171" height="124" border="0" /></a></td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </table></td></tr> <tr> <td id="portals_caption_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#3d3d3f">  <td  width="82" height="22" class="main_menu" bgcolor="#3DBCE9" align="center"><a href="skyinteractive.php?lnk=work-portals-link1" target="_blank">PORTALS</a></td><td>&nbsp;</td></tr></table></td></tr><tr> <td valign="top" align="left" id="portals_M" style="background-color:#000000;"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> </tr> <tr> <td><a href="skyinteractive.php?lnk=work-portals-link1" target="_blank"><img src="Interactive_logo/Vh1India_sky_logo.gif" alt="vh1india.com" width="171" height="122" border="0" /></a></td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>  </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </table></td></tr> <tr> <td id="campaigns_virals_caption_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#3d3d3f"><td  width="160" height="22" class="main_menu" bgcolor="#3DBCE9" align="center"><a href="skyinteractive.php?lnk=work-viral-link4" target="_blank">CAMPAIGNS &amp; VIRALS</a></td><td>&nbsp;</td></tr></table></td> </tr><tr><td id="campaigns_virals_M" valign="top" align="left" style="background-color:#000000;"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td><td width="183">&nbsp;</td> </tr> <tr> <td><a href="skyinteractive.php?lnk=work-viral-link5"><img src="Interactive_logo/Yes_campaigns_logo.jpg" width="171" height="135" border="0" /></a></td> <td>&nbsp;</td> <td><a href="skyinteractive.php?lnk=work-viral-link4" target="_blank"><img src="Sky_Logo/TOI_campaigns_logo.jpg" alt="A Day in The Life of India" width="171" height="135" border="0" /></a></td> <td>&nbsp;</td> <td valign="top"><a href="skyinteractive.php?lnk=work-viral-link1" target="_blank"><img src="Interactive_logo/BleedIndia_sky_logo.gif" alt="Bleed India" width="171" height="121" border="0" /></a></td> <td>&nbsp;</td> <td valign="top"><a href="skyinteractive.php?lnk=work-viral-link2" target="_blank"><img src="Interactive_logo/Psyche_sky_logo.gif" alt="Heroes Mindreader" width="171" height="121" border="0" /></a></td> <td>&nbsp;</td> <td valign="top"><a href="skyinteractive.php?lnk=work-viral-link3" target="_blank" ><img src="Interactive_logo/GodsofGuitar_sky_logo.gif" alt="Vh1 Gods of Guitar" width="171" height="121" border="0" /></a></td>  </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr>  <tr>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>  <td>&nbsp;</td>  <td>&nbsp;</td> </tr>  </table></td> </tr> <tr><td id="games_caption_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#3d3d3f"><td  width="70" height="22" class="main_menu" bgcolor="#3DBCE9" align="center"><a href="skyinteractive.php?lnk=work-games-link3" target="_blank">GAMES</a></td><td>&nbsp;</td></tr></table></td> </tr> <tr> <td id="games_M" valign="top" align="left" style="background-color:#000000;"><table width="980" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-games-link3" target="_blank"><img src="Sky_Logo/TOI_Games_logo.jpg" alt="Sadak Pe Dhadak" width="171" height="137" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-games-link1" target="_blank"><img src="Interactive_logo/BleedIndia1_sky_logo.gif" alt="Bleed India" width="171" height="121" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-games-link2" target="_blank"><img src="Interactive_logo/Contesr2Win_sky_logo.gif" alt="Contests2win" width="171" height="121" border="0" /></a></td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td></tr><tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td></tr></table></td></tr><tr> <td valign="top" align="left" id="online_advertising_caption_M"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#3d3d3f"> <td  width="154" height="22" class="main_menu" bgcolor="#3DBCE9" align="center"><a href="skyinteractive.php?lnk=work-online_adv-link9" target="_blank">ONLINE ADVERTISING</a></td><td>&nbsp;</td></tr></table></td> </tr> <tr><td id="online_advertising_M" valign="top" align="left" style="background:#000000;"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr> <td width="183">&nbsp;</td> <td>&nbsp;</td><td width="183">&nbsp;</td> <td>&nbsp;</td><td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td> </tr> <tr> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link9" target="_blank"><img src="Sky_Logo/TOI_onlineAdv_logo.jpg" alt="A Day in The Lif of India" width="171" height="139" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link1a" target="_blank"><img src="Interactive_logo/TCS_sky_logo.jpg" alt="The Comedy Store Emailers" width="171" height="140" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link1" target="_blank"><img src="Interactive_logo/HisaveUKbanner_sky_logo.gif" alt="ICICI Bank Hisave UK Banners" width="171" height="140" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link2" target="_blank"><img src="Interactive_logo/iciciLandingPage_sky_logo.gif" alt="ICICI Bank Hisave UK Landing Pages" width="171" height="140" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link3" target="_blank"><img src="Interactive_logo/UsMiscellaneous_sky_logo.gif" alt="ICICI Bank UK Miscellaneous" width="171" height="140" border="0" /></a></td> </tr> <tr> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> </tr><tr><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link4" target="_blank"><img src="Interactive_logo/Money2India_sky_logo.gif" alt="ICICI Bank Money2India Banners" width="171" height="140" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link5" target="_blank"><img src="Interactive_logo/landingpage_sky_logo.gif" alt="ICICI Bank Money2India Landing Page" width="171" height="140" border="0" /></a></td> <td>&nbsp;</td><td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link6" target="_blank"><img src="Interactive_logo/CanadaBaner_sky_logo.gif" alt="ICICI Bank HiSave Canada Banners" width="171" height="137" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link7" target="_blank"><img src="Interactive_logo/Hsbc_sky_logo.jpg" alt="HSBC Bank Banners" width="171" height="126" border="0" /></a></td> <td>&nbsp;</td> <td valign="top" align="left"><a href="skyinteractive.php?lnk=work-online_adv-link8" target="_blank"><img src="Interactive_logo/ReebokGoalBanner_sky_logo.jpg" alt="Reebok Goal Banners" width="171" height="125" border="0" /></a></td></tr><tr><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr></table></td></tr> <tr> <td id="skygoodies_header_M" valign="top" align="left" style="background-image:url(Sky_Logo/skygoodies_bg.jpg); background-repeat: repeat-x;"><img src="Sky_Logo/skygoodies_homepg_top_banner.jpg" alt="SKY GOODIES" width="949" height="182" border="0" usemap="#MapSkyGoodies" /></td></tr><tr><td id="skygoodies_blank_M">&nbsp;</td></tr><tr><td id="goodies_games_caption_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr bgcolor="#E0E0E1"><td  width="70" height="22" align="center" bgcolor="#F8AA58" class="main_menu"><a href="skygoodies/FowlWords/index.html" target="_blank">GAMES</a></td><td bgcolor="#E0E0E1">&nbsp;</td></tr></table></td></tr><tr><td id="goodies_games_M" valign="top" align="left"><table width="980" border="0" cellspacing="0" cellpadding="0"><tr><td width="183">&nbsp;</td> <td>&nbsp;</td> <td width="183">&nbsp;</td><td>&nbsp;</td><td width="183">&nbsp;</td><td>&nbsp;</td><td width="183">&nbsp;</td><td>&nbsp;</td><td width="183">&nbsp;</td></tr><tr><td valign="top" align="left"><a href="skygoodies/Eye4Detail/CalendarArt/" target="_blank"><img src="Interactive_logo/sky_goodies_work-calendar.jpg" alt="Eye for detail Indian Calender Art Special iPhone Game" width="183" height="143" border="0" /></a></td><td>&nbsp;</td><td valign="top" align="left"><a href="skygoodies/Eye4Detail/TruckArt/" target="_blank"><img src="Interactive_logo/sky_goodies_work-pageTruck.jpg" alt="Eye for detail Indian Truck Art Special iPhone Game" width="183" height="143" border="0" /></a></td><td>&nbsp;</td><td valign="top" align="left"><a href="skygoodies/FowlWords/index.html" target="_blank"><img src="Interactive_logo/sky_goodies_work-pageFowl.jpg" alt="Fowl Words iPhone Game" width="183" height="143" border="0" /></a></td><td>&nbsp;</td><td><a href="http://www.skydesign.in/dontbreakmyheart/" target="_blank"><img src="Sky_Logo/DBMH.jpg" alt="Don&rsquo;t Break My Heart iPhone Game" width="183" height="143" border="0" /></a></td><td>&nbsp;</td><td><a href="http://www.behance.net/gallery/2012-calendar-5-years-of-Sky-Design/2777535" target="_blank"><img src="Sky_Logo/calender.jpg" alt="5 years of Sky Design Calendar" width="183" height="143" border="0" /></a></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr></table></td></tr></table></td></tr></table>';
	//showContent('work');
//equalizing height
equalizeHeight();
}

if(inputurl=="services")

{

	var txt='';

	document.getElementById("sub_top_center_menu").innerHTML=txt;

	document.getElementById("sub_top_left_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_center_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_right_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("extraleftSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	document.getElementById("extraBottomSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	

	document.getElementById("main_content").innerHTML='<table width="980" border="0" cellspacing="0" cellpadding="0"><tr><td class="BLACK"><div class="PEOPLE style1" style="width:60px; padding:2px 5px; background-color:#A7A8AA; color:#FFFFFF">SERVICES</div></td></tr> <tr><td>&nbsp;</td></tr><tr><td>&nbsp;</td></tr> <tr>  <td><table width="100%" border="0" cellspacing="0" cellpadding="0">  <tr><td width="485" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><img src="sky_services/sky_service_branding.jpg" alt="Branding" width="133" height="35" border="0" /></td></tr> <tr> <td><div class="CC" style="background-color:FFFFFF; padding:10px 0px 10px 10px"><span class="BLACK">&bull;&nbsp;&nbsp; Strategic brand positioning<br />&bull;&nbsp;&nbsp; Nomenclature<br />&bull;&nbsp;&nbsp; Brand identity development/ logo design<br />&bull;&nbsp;&nbsp; Visual style system<br />&bull;&nbsp;&nbsp; Typeface Design<br />&bull;&nbsp;&nbsp; Corporate stationery &amp; Collateral design<br />&bull;&nbsp;&nbsp; Brand manuals</span></div></td> </tr> <tr>  <td>&nbsp;</td> </tr> <tr> <td><img src="sky_services/sky_service_print.jpg" alt="Print" width="70" height="32" border="0" /></td> </tr><tr>  <td><div class="CC" style="background-color:FFFFFF; padding:10px 0px 10px 10px"><span class="BLACK">&bull;&nbsp;&nbsp; Books<br />&bull;&nbsp;&nbsp; Brochures<br />&bull;&nbsp;&nbsp; Flyers<br />&bull;&nbsp;&nbsp; Annual Reports<br />&bull;&nbsp;&nbsp; Menus<br />&bull;&nbsp;&nbsp; Space Graphics<br />&bull;&nbsp;&nbsp; Invitations <br />&bull;&nbsp;&nbsp; Visual merchandising for retail</span></div></td> </tr>  <tr> <td>&nbsp;</td> </tr> <tr> <td><img src="sky_services/sky_service_prod_design.jpg" alt="Product Design" width="233" height="32" border="0" /></td></tr><tr> <td> <div class="CC" style="background-color:FFFFFF; padding:10px 0px 10px 10px"><span class="BLACK">&bull;&nbsp;&nbsp; Product design, development and detailing<br />&bull;&nbsp;&nbsp; Merchandise design<br />&bull;&nbsp;&nbsp; Retail and Exhibition design<br />&bull;&nbsp;&nbsp; Consulting for product detailing, manufacturing materials<br />  & processes and value engineering</span></div></td> </tr> <tr> <td>&nbsp;</td>  </tr> <tr> <td><img src="sky_services/sky_service_packaging.jpg" alt="Packaging" width="159" height="36" border="0" /></td> </tr> <tr> <td><div class="CC" style="background-color:FFFFFF; padding:10px 0px 10px 10px"><span class="BLACK">&bull;&nbsp;&nbsp; Product branding<br />&bull;&nbsp;&nbsp; Container design and graphics</span></div></td> </tr> <tr> <td>&nbsp;</td> </tr>  </table></td> <td width="10"></td><td width="485" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr> <td><img src="sky_services/sky_service_web_inetractive.jpg" alt="Web Interactive" width="264" height="30" border="0" /</td> </tr><tr><td><div class="CC" style="background-color:FFFFFF; padding:10px 0px 10px 10px"><span class="BLACK">&bull;&nbsp;&nbsp; Information architecture<br />&bull;&nbsp;&nbsp; Website design<br />&bull;&nbsp;&nbsp; Integration in html, Flash, php etc<br />&bull;&nbsp;&nbsp; Rich media: Flash animation, embedded videos & sound<br />&bull;&nbsp;&nbsp; Databasing using MsAccess and MySQL<br />&bull;&nbsp;&nbsp; Content Management Systems with user-friendly GUI<br />&bull;&nbsp;&nbsp; Search Engine Optimisation<br />&bull;&nbsp;&nbsp; Cross-browser testing<br />&bull;&nbsp;&nbsp; Maintenance <br />&bull;&nbsp;&nbsp; Web Hosting and Domain Registration<br />&bull;&nbsp;&nbsp; Interactive CD-ROMs</span></div></td></tr><tr> <td>&nbsp;</td></tr><tr> <td><img src="sky_services/sky_service_adv.jpg" alt="Online Advertising" width="270" height="40" border="0" /></td></tr> <tr><td><div class="CC" style="background-color:FFFFFF; padding:10px 0px 10px 10px"><span class="BLACK">&bull;&nbsp;&nbsp; Animated Flash and static banners<br />&bull;&nbsp;&nbsp; Size adaptations for banners for third-party websites and portals<br />&bull;&nbsp;&nbsp; Landing Pages<br />&bull;&nbsp;&nbsp; E-mailers<br />&bull;&nbsp;&nbsp; Campaigns and Virals</span></div></td></tr><tr><td>&nbsp;</td></tr> <tr><td><img src="sky_services/sky_service_games.jpg" alt="Games and Application" width="334" height="36" border="0" /></td></tr><tr> <td><div class="CC" style="background-color:FFFFFF; padding:10px 0px 10px 10px"><span class="BLACK">&bull;&nbsp;&nbsp; Online games built in Flash<br />&bull;&nbsp;&nbsp; Application development for the iPhone<br />&bull;&nbsp;&nbsp; Mobile games built in FlashLite<br />&bull;&nbsp;&nbsp; Concept, Story, Character design, Illustration <br />and Game Play for all kinds of games</span></div></td></tr><tr> <td>&nbsp;</td></tr><tr> <td><img src="sky_services/sky_service_others.jpg" alt="Others" width="119" height="30" border="0" /></td></tr><tr><td> <div class="CC" style="background-color:FFFFFF; padding:10px 0px 10px 10px"><span class="BLACK">&bull;&nbsp;&nbsp; Illustration<br />&bull;&nbsp;&nbsp; Nomenclature<br />&bull;&nbsp;&nbsp; Copy-writing<br />&bull;&nbsp;&nbsp; Photography<br />&bull;&nbsp;&nbsp; Typeface Design</span></div></td> </tr> <tr> <td>&nbsp;</td></tr></table></td></tr></table></td></tr></table>';

	

	

	

}

if(inputurl=="client")

{

	var txt='';

	document.getElementById("sub_top_center_menu").innerHTML=txt;

	document.getElementById("sub_top_left_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_center_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_right_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("extraleftSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	document.getElementById("extraBottomSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	





document.getElementById("main_content").innerHTML='<table width="980" border="0" cellspacing="0" cellpadding="0"><tr><td class="BLACK"><div  class="main_menu" style="width:82px; padding:2px 5px; background-color:#A7A8AA; color:#FFFFFF" align="center">CLIENT LIST </div></td></tr><tr><td><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr> <td>&nbsp;</td></tr></table> <table width="980" border="0" cellspacing="0" cellpadding="0">  <tr><td><img src="sky_client_list/rel_energy.jpg" width="221" height="136" /></td> <td>&nbsp;</td><td><img src="sky_client_list/rel_infra.jpg" width="221" height="136" /></td><td>&nbsp;</td><td><img src="sky_client_list/rel_metro.jpg" width="221" height="136" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page44.jpg" alt="the times of india" width="221" height="136" border="0" /></td></tr> <tr> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td></tr> <tr> <td><img src="Sky_client/client-page41.jpg" alt="tata trent" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/Godrej.jpg" alt="Godrej" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page15.jpg" alt="ICICI Bank Australia" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page16.jpg" alt="ICICI Bank Canada" width="221" height="136" border="0" /></td></tr><tr><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr> <tr><td><img src="Sky_client/client-page17.jpg" alt="ICICI Bank Germany" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page18.jpg" alt="ICICI Bank UK" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page40.jpg" alt="studio 18" width="221" height="136" border="0" /></td> <td>&nbsp;</td><td><img src="Sky_client/client-page48.jpg" alt="Viacom 18" width="221" height="136" border="0" /></td> </tr><tr><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> </tr> <tr> <td><img src="Sky_client/client-page46.jpg" alt="VH1" width="221" height="136" border="0" /></td> <td>&nbsp;</td> <td><img src="Sky_client/client-page23.jpg" alt="Mindshare" width="221" height="136" border="0" /></td>  <td>&nbsp;</td> <td><img src="Sky_client/client-page43.jpg" alt="the spa group" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page42.jpg" alt="the comedy store" width="221" height="136" border="0" /></td> </tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td></tr><tr> <td><img src="Sky_client/client-page24.jpg" alt="Mocha" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page49.jpg" alt="Westside" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page34.jpg" alt="RSE" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page19.jpg" alt="Indigo" width="221" height="136" border="0" /></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td></tr> <tr> <td><img src="Sky_client/client-page21.jpg" alt="Indigo" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/client-page6.jpg" alt="deGustibus" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page45.jpg" alt="tote" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/client-page31.jpg" alt="Pallate" width="221" height="136" border="0" /></td></tr><tr> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td><img src="Sky_client/Magic-Bus.jpg" alt="Magic Bus" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page14.jpg" alt="HSBC" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page4.jpg" alt="Control Point" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="sky_client_list/tbz.jpg" width="221" height="136" /></td> </tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td><img src="Sky_client/client-page3.jpg" alt="Contest 2 Win" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page1.jpg" alt="Bawa BroadCasting" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page2.jpg" alt="Black Magic" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/Canvas.jpg" alt="Canvas" width="221" height="136" border="0" /></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td></tr><tr><td><img src="Sky_client/City-Bliss.jpg" alt="City Bliss" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page5.jpg" alt="CreativeLand Asia" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page7.jpg" alt="DMA Branding" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page8.jpg" alt="dma yellow works" width="221" height="136" border="0" /></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr> <td width="221"><img src="Sky_client/client-page9.jpg" alt="equinox films pvt ltd" width="221" height="136" border="0" /></td>  <td>&nbsp;</td>  <td width="221"><img src="Sky_client/client-page10.jpg" alt="Flying Saucer" width="221" height="136" border="0" /></td> <td>&nbsp;</td><td width="221"><img src="Sky_client/client-page11.jpg" alt="gingerwater films" width="221" height="136" border="0" /></td><td>&nbsp;</td>  <td width="221"><img src="Sky_client/client-page12.jpg" alt="goa heritage action group" width="221" height="136" border="0" /></td> </tr> <tr> <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td>    <td>&nbsp;</td>  <td>&nbsp;</td> <td>&nbsp;</td>  </tr> <tr> <td><img src="Sky_client/gs.jpg" alt="gs" width="221" height="136" border="0" /></td> <td>&nbsp;</td> <td><img src="Sky_client/client-page13.jpg" alt="heritage network" width="221" height="136" border="0" /></td> <td>&nbsp;</td>  <td><img src="Sky_client/client-page20.jpg" alt="Indigo Cafe" width="221" height="136" border="0" /></td> <td>&nbsp;</td> <td><img src="Sky_client/client-page22.jpg" alt="Leaf Design" width="221" height="136" border="0" /></td>  </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td></tr> <tr><td><img src="Sky_client/client-page25.jpg" alt="Mojo Eye Gear" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/client-page26.jpg" alt="Monsoon Films" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/client-page28.jpg" alt="Novanet" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/client-page39.jpg" alt="star news" width="221" height="136" border="0" /></td> </tr> <tr> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>  </tr> <tr><td><img src="Sky_client/client-page29.jpg" alt="Onads Communications" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/client-page30.jpg" alt="Ormax" width="221" height="136" border="0" /></td> <td>&nbsp;</td><td><img src="Sky_client/client-page32.jpg" alt="Phat Phish" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/client-page47.jpg" alt="Via earth" width="221" height="136" border="0" /></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td> </tr> <tr><td><img src="Sky_client/client-page33.jpg" alt="PhoCusWright" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/Reliance.jpg" alt="reliance" width="221" height="136" border="0" /></td><td>&nbsp;</td> <td><img src="Sky_client/client-page35.jpg" alt="RedChillies" width="221" height="136" border="0" /></td> <td>&nbsp;</td> <td><img src="Sky_client/client-page27.jpg" alt="Moveable feast" width="221" height="136" border="0" /></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td>  </tr><tr><td><img src="Sky_client/client-page36.jpg" alt="Rimo Expeditions" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/Shaze.jpg" alt="Shaze" width="221" height="136" border="0" /></td><td>&nbsp;</td><td><img src="Sky_client/client-page38.jpg" alt="space design consultant" width="221" height="136" border="0" /></td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr> <td>&nbsp;</td><td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td><td>&nbsp;</td></tr> </table></td></tr></table>';

}





if(inputurl=="aboutus")

{

	var txt='';

	document.getElementById("sub_top_center_menu").innerHTML=txt;

	document.getElementById("sub_top_left_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_center_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_right_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("extraleftSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	document.getElementById("extraBottomSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	document.getElementById("main_content").innerHTML='<table width="980" border="0" cellspacing="0" cellpadding="0"><tr><td class="BLACK"><div  class="main_menu" style="width:72px; padding:2px 5px; background-color:#A7A8AA; color:#FFFFFF" align="center">ABOUT US</div></td><td width="490">&nbsp;</td></tr> <tr><td class="BLACK">&nbsp;</td> <td>&nbsp;</td> </tr> <tr><td class="BLACK" align="left"><img src="Sky_Logo/new-about-us-page.png" width="480" height="323" /></td><td style="font-size:12px; color:#818284">Sky Design was founded by Amit Gudibanda and Misha Gurnanee Gudibanda, both graduates of the National Institute of Design, Ahmedabad. Amit and Misha’s different specialisations (Product Design and Graphic Design respectively) and common interests in branding and the interactive medium led to the growth of Sky Design as a multi-disciplinary design firm, offering design solutions in branding, print, product design, websites, online and mobile applications. Sky Design is based in Mumbai, with its office in Bandra East, in a beautiful green pocket of Bombay.<br/><br/>At Sky Design we believe in solving problems through intelligent design, which is a combination of aesthetics, business strategies and common sense. We are a team of professionals experienced in design and web technology. We are passionate about the interactive medium and all its possibilities.<br/><br/>Sky Interactive is a division of Sky Design which specialises in web technology and helps Sky Design create websites, online advertising campaigns, applications and games.<br/><br/>In 2008, Sky Goodies was born with the dream of creating original content in any medium. The first application to be commercially released by Sky Goodies was &lsquo;Fowl Words&rsquo;, a word game for the iPhone. Next, two games in the series &lsquo;Eye For Detail&rsquo; were released in the iTunes store. Many more are on the way.</p></td></tr><tr> <td class="BLACK">&nbsp;</td><td>&nbsp;</td></tr></table>';

}



/*if(inputurl=="people")

{

	var txt='';

	document.getElementById("sub_top_center_menu").innerHTML=txt;

	document.getElementById("sub_top_left_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_center_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_right_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("main_content").innerHTML='<table width="980" border="0" cellspacing="0" cellpadding="0"><tr><td class="BLACK"><div  class="main_menu" style="width:60px; padding:2px 5px; background-color:#A7A8AA; color:#FFFFFF"">PEOPLE</div></td><td>&nbsp;</td></tr><tr><td class="BLACK" height="8px"></td><td>&nbsp;</td></tr><tr><td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><strong class="BLACK">Amit Gudibanda</strong></td></tr><tr><td class="BLACK" height="5"></td></tr><tr><td class="GRAY"><span class="BLACK">Director, Innovation &amp; Technology</span></td></tr><tr><td height="5"></td></tr><tr><td><span class="GRAY">A Product Design graduate of the National Institute of Design, Ahmedabad, Amit is one of the founding partners of Sky Design. He brings to the table his vast knowledge and experience with the interactive medium, from online games, mobile applications, websites, web animation and rich media. Amit is also a consultant to branding firms handling FMCG products, DMA Branding and Yellow Resources, and has worked on product branding for Complan, Parachute, Care and other FMCG brands.</span></td></tr><tr><td>&nbsp;</td></tr></table></td><td width="340" align="right"><img src="images/people1.jpg" width="340" height="160" style="padding:0px 0px 0px 20px"/></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><strong class="BLACK">Misha Gurnanee Gudibanda</strong></td></tr><tr><td class="BLACK" height="5"></td></tr><tr><td class="GRAY"><span class="BLACK">Creative Director</span></td></tr><tr><td height="5"></td></tr><tr><td><span class="GRAY">Misha graduated in Communication and Graphic design from the National Institute of Design, Ahmedabad. Over 7 years, she has worked in Tata Interactive Systems, DMA Branding, and Ray &amp; Keshavan, and has headed a variety of design projects, ranging from Information design for the Reserve Bank of India Monetary Museum, to FMCG brands like Antiquity, Sunfeast, Taj Mahal tea, etc. She co-founded Sky Design with Amit. She is extremely versatile, having worked in the fields of print, branding, packaging, interactive applications, and websites.</span></td></tr><tr><td>&nbsp;</td></tr></table></td><td><img src="images/people2.jpg" width="340" height="162"  style="padding:0px 0px 0px 20px"/></td></tr></table>';

}*/

if(inputurl=="carrers")

{

	

	var txt='<table width="980" border="0" cellspacing="0" cellpadding="0"><tr><td width="404">&nbsp;</td><td width="85">&nbsp;</td><td width="482">&nbsp;</td><td width="9">&nbsp;</td></tr><tr><td width="404" style="line-height:23px"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><p class="GRAY"><span class="style2">We are always looking for people who are passionate about design and quality.</span> <br/><br/>At Sky Design, each person takes pride in and responsibilty for their work. Self motivation, passion, an eye for detail, integrity and total commitment to quality are appreciated.</p><p class="BLACK"><span class="GRAY"><br/> If you are interested in working with us, please fill out the form below, or send us an email at <a href="mailto:careers@skydesign.in" class="BLUE">careers@skydesign.in</a>, along with your resume and portfolio, if possible. We will call you!</span></p></td></tr><tr><td>&nbsp;</td></tr><tr><td class="GRAY"><div name="myspan" id="myspan"><form name="myform" action="skydesign.php" method="post" enctype="multipart/form-data" onsubmit="return validateskyCareer();"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr> <td style="border:1px solid #3DBCE9; padding:10px 5px 5px 10px"><table><tr><td style="line-height:30px">Name :<input type="text" name="txtName" id="txtName" style=" border:#EEEFEF; background-color:#EEEFEF;"/><br /> Date of Birth :<input type="text" name="txtDOB" id="txtDOB" style=" border:#EEEFEF; background-color:#EEEFEF;" /> <br /> Email ID : <input type="text" name="txtEmailID" id="txtEmailID" style=" border:#EEEFEF; background-color:#EEEFEF;" /><br /> Gender&nbsp;<input type="radio" name="Gender" value="Male" checked />&nbsp;Male&nbsp;<input type="radio" name="Gender" value="Female" />&nbsp;Female<br />Applying for the position of :<select name="txtPosition" id="txtPosition" style="width:220px; border:#EEEFEF; background-color:#EEEFEF;"><option value="Senior Graphic Designer" >Senior Graphic Designer</option><option value="Junior Web Developer">Junior Web Developer</option><option value="Junior Flash Animator_Programmer" >Junior Flash Animator / Programmer</option><option value="Marketing">Marketing</option></select> <br /> Fresh graduate :&nbsp;<input type="radio" name="Graduate" value="Yes" checked onclick="javascript:disabledExperiencedField();" />&nbsp;Yes&nbsp;<input type="radio" name="Graduate" value="No" onclick="javascript:displayExperiencedField();" /> &nbsp;No<br />Previous work experience : <input name="workexpYears" type="text" disabled="disabled" style=" border:#EEEFEF; background-color:#EEEFEF;"  onkeypress="return numbersonly(this, event);" size="5" maxlength="2" /> years<input name="workexpMonth" type="text" disabled="disabled" style=" border:#EEEFEF; background-color:#EEEFEF;"  onkeypress="return numbersonly(this, event);" size="5" maxlength="2" /> months<br />Previous salary Rs :<input name="prevSalary" type="text" disabled="disabled" style=" border:#EEEFEF; background-color:#EEEFEF;"  onkeypress="return numbersonly(this, event);" size="5" maxlength="7"/> per month<br />Expected salary Rs :<input name="exptedSalary" type="text" style=" border:#EEEFEF; background-color:#EEEFEF;"   onkeypress="return numbersonly(this, event);" size="5" maxlength="7" />per month<br />A little about yourself :<br /><textarea name="yourself" cols="30" rows="2" style=" border:#EEEFEF; background-color:#EEEFEF;" style="max-width: 330px; min-width: 330px; min-height: 50px; max-height: 50px;"></textarea><br />Upload your resume (Upto 1Mb) :<input name="fileresume" id="fileresume" type="file" style=" border:#EEEFEF; background-color:#EEEFEF;"/><br />Upload your portfolio (Upto 10Mb) :<input name="fileportfolio" id="fileportfolio" type="file" style=" border:#EEEFEF; background-color:#EEEFEF;"/><br/><input type ="image" src="images/apply.jpg" width="97" height="20"  style="padding-top:8px" value="Submit" /></td></tr></table></td></tr></table></form></div></table></td><td width="85">&nbsp;</td><td width="482" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td><div class="main_menu" style="width:140px; padding:2px 5px; background-color:#000000; color:#FFFFFF">CURRENT OPENINGS </div></td></tr> <tr><td><p><span class="BLACK"><br/>Senior Graphic Designer</span><br /><span class="GRAY">We are urgently looking for a graphic designer with fantastic work, some illustration skill, a strong sense of commitment and oodles of enthusiasm. People bursting with creativity and purpose are welcome. Please mail us a portfolio of work. The job profile would include art direction, and working as part of a team on various print and web projects. Software knowledge of Illustrator and Photoshop is required. Please go through our work to understand the kind of work and quality that would be expected.</span></p><p><br/><span class="BLACK">Junior Web Developer</span><br /><span class="GRAY">Would be expected to work in a team to develop websites and web applications using HTML,PHP and Javascript. This would include coding for front-end, back-end and server side scripting.  Material and training will be provided.</span></p><p><br/><span class="BLACK">Junior Flash Animator / Programmer</span><br /><span class="GRAY">The job profile would include Flash integration and animation for Online advertising, websites, and online and mobile games. Freshers interested in website animaton and coding may apply. A basic knowledge of Flash is necessary. Knowledge of html would be an advantage.</span></p><p><span class="BLACK"><br/>Marketing<br /></span><span class="GRAY">The job profile would include engaging new projects, client servicing, and marketing the company. </span></p></td></tr></table></td><td width="9">&nbsp;</td></tr></tr></table>';

	document.getElementById("sub_top_center_menu").innerHTML=txt;

	document.getElementById("sub_top_left_menu").style.backgroundColor='#ffffff';

	document.getElementById("sub_top_right_menu").style.backgroundColor='#ffffff';

	document.getElementById("sub_top_center_menu").style.backgroundColor='#ffffff';

	document.getElementById("extraleftSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	document.getElementById("extraBottomSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	

	document.getElementById("main_content").innerHTML='';

}

if(inputurl=="contact")

{

	var txt='';

	document.getElementById("sub_top_center_menu").innerHTML=txt;

	document.getElementById("sub_top_left_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_right_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("sub_top_center_menu").style.backgroundColor='#FFFFFF';

	document.getElementById("extraleftSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	document.getElementById("extraBottomSection").innerHTML='<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td height="140">&nbsp;</td></tr></table>';

	

	document.getElementById("main_content").innerHTML='<table width="980" border="0" cellspacing="0" cellpadding="0" style="color:#818284;"><tr><td ><div  class="main_menu" style="width:70px; padding:2px 5px; background-color:#A7A8AA; color:#FFFFFF" align="center">CONTACT </div></td></tr><tr><td><div  style="background-color:#ffffff; padding:10px 0px 10px 0px"><span ><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr><td valign="top">&nbsp;</td> <td>&nbsp;</td> </tr> <tr><td width="160" valign="top"><div  class="main_menu" style="width:160px; padding:2px 5px; background-color:#000000; color:#ffffff;"><b>ADDRESS</b></div> </td> <td></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td style="background-color:#ffffff; color:#000000;">SKY DESIGN<br />Flat No. D/82/817, Ground floor,<br />MIG Co-operative Housing Society,<br />Group V, Gandhi Nagar,<br />Bandra East, Mumbai 400051.</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td><div  class="main_menu" style="width:160px; padding:2px 5px; background-color:#000000; color:#ffffff;"><b>TELEPHONE NUMBER</b></div></td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td><font color="#FFFFFF"><font color="#000000">+91 9820368610</font></font></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td><div  class="main_menu" style="width:160px; padding:2px 5px; background-color:#000000; color:#ffffff;"><b>EMAIL</b></div></td> <td>&nbsp;</td></tr><tr><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td>&nbsp;</td><td><a href="mailto://contact@skydesign.in" style="color:#000000;">contact@skydesign.in</a></td></tr> <tr><td>&nbsp;</td> <td>&nbsp;</td></tr></table></span></div></td></tr></table>';

}

}






