
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html xmlns:fb="http://ogp.me/ns/fb#">
<html>
<head>

<TITLE>Our services</TITLE>
	<LINK REL="stylesheet" HREF="stylesheet.css" TYPE="text/css">
<meta http-equiv="Content-type" content="text/html;charset=iso-8859-1"> 
<meta name="title" content="Argumenta">
<meta name="author" content="Argumenta INC">
<meta name="publisher" content="http://www.argumenta.com">
<meta name="copyright" content="Argumenta INC">
<meta name="revisit" content="After 1 days">
<meta name="keywords" content="facebook, web, websites, sms/mms, social media">
<meta name="description" content="argumenta delivers turn-key solutions covering "new media" web, facebook, sms/mms and apps. ">
<meta name="robots" content="index,follow">
<meta name="language" content="english">

<script src="javascripts.js" type="text/javascript" language="JavaScript"></script>
<!--script type="text/javascript" src="http://code.jquery.com/jquery-1.6.1.min.js"></script-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>


<!--script type="text/javascript" src="jquery.magnifier.js"></script-->
<script>
// SET ALL HREF TO TARGET BLANK
//jq.noConflict();
$(document).ready(function(){$('a[href^="http://"]').attr('target', '_blank');});
</script>

<style type="text/css">

#dhtmltooltip{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
position: absolute;
left: -300px;
width: 100px;
border: 1px solid white;
padding: 5px;
min-height:30px;
background-color: black;
color:white;
visibility: hidden;
z-index: 100;
/*Remove below line to remove shadow. Below line should always appear last within this CSS*/
/*filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=135);*/
}

#dhtmlpointer{
position:absolute;
left: -300px;
z-index: 101;
visibility: hidden;
}

</style>
<meta name="google-site-verification" content="X68luEZ0ZLc7alEuHjPm1PTT1Dg_7MaGrKF9NWsrRWQ" />

</head>
<script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16649952-1']);
  _gaq.push(['_setDomainName', 'none']);
  _gaq.push(['_setAllowLinker', true]);
  _gaq.push(['_trackPageview']);
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>

<body bgcolor="#000000">
<script type="text/javascript">

/***********************************************
* Cool DHTML tooltip script II- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

var offsetfromcursorX=12 //Customize x offset of tooltip
var offsetfromcursorY=10 //Customize y offset of tooltip

var offsetdivfrompointerX=10 //Customize x offset of tooltip DIV relative to pointer image
var offsetdivfrompointerY=14 //Customize y offset of tooltip DIV relative to pointer image. Tip: Set it to (height_of_pointer_image-1).

document.write('<div id="dhtmltooltip"></div>') //write out tooltip DIV
document.write('<img id="dhtmlpointer" src="arrow2.gif">') //write out pointer image

var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""

var pointerobj=document.all? document.all["dhtmlpointer"] : document.getElementById? document.getElementById("dhtmlpointer") : ""

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(thetext, thewidth, thecolor){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}

function positiontip(e){
if (enabletip){
var nondefaultpos=false
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var winwidth=ie&&!window.opera? ietruebody().clientWidth : window.innerWidth-20
var winheight=ie&&!window.opera? ietruebody().clientHeight : window.innerHeight-20

var rightedge=ie&&!window.opera? winwidth-event.clientX-offsetfromcursorX : winwidth-e.clientX-offsetfromcursorX
var bottomedge=ie&&!window.opera? winheight-event.clientY-offsetfromcursorY : winheight-e.clientY-offsetfromcursorY

var leftedge=(offsetfromcursorX<0)? offsetfromcursorX*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth){
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=curX-tipobj.offsetWidth+"px"
nondefaultpos=true
}
else if (curX<leftedge)
tipobj.style.left="5px"
else{
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetfromcursorX-offsetdivfrompointerX+"px"
pointerobj.style.left=curX+offsetfromcursorX+"px"
}

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight){
tipobj.style.top=curY-tipobj.offsetHeight-offsetfromcursorY+"px"
nondefaultpos=true
}
else{
tipobj.style.top=curY+offsetfromcursorY+offsetdivfrompointerY+"px"
pointerobj.style.top=curY+offsetfromcursorY+"px"
}
tipobj.style.visibility="visible"
if (!nondefaultpos)
pointerobj.style.visibility="visible"
else
pointerobj.style.visibility="hidden"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
pointerobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}

document.onmousemove=positiontip

</script>

<TABLE cellpadding="0" cellspacing="0" id="wrappertable">
	<TR>
		<TD align="center"id="wrappercell">
			<TABLE cellpadding="0" border="0" cellspacing="0" id="templatetable">
		<TR >
	<TD id="topcell" >

				<div id="logobox">
					<a href="?home" title="Argumenta"><img src="../../Files/Graphics/logo_top_big.png" border="0" id="logo" /></a>
				</div>
					</TD>
</TR>
<TR valign="Top" align="Left" >
	<TD id="menucell" align="center" >

    <table width="1000" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td align="left" valign="middle">
		
        	<ul id="topmenulist">
            	<li onMouseover="ddrivetip('Go to home', 300)"; onMouseout="hideddrivetip()">
                	<div id="head"><a href="?home" >Home</a></div>
                    <div id="subhead">Go home</div>
                </li>
                <li onMouseover="ddrivetip('Read about who we are', 300)"; onMouseout="hideddrivetip()">
                	<div id="head"><a href="?about" >About</a></div>
                    <div id="subhead">Who we are</div>
                </li>
                <li onMouseover="ddrivetip('Read about what we can do', 300)"; onMouseout="hideddrivetip()">
                	<div id="head"><a href="?services" style="color:#ff000a;">Services</a></div>
                    <div id="subhead">What we can do</div>
                </li>
                <li onMouseover="ddrivetip('Read about what we have done', 300)"; onMouseout="hideddrivetip()">
                	<div id="head"><a href="?work" >Work</a></div>
                    <div id="subhead">What we have done</div>
                </li>
                <li onMouseover="ddrivetip('Get in touch with us', 300)"; onMouseout="hideddrivetip()">
                	<div id="head"><a href="?contact" >Contact</a></div>
                    <div id="subhead">Get in touch</div>
                </li>
            </ul>
        </td>
        <td align="right" valign="middle">
        	<ul id="menusocialicons">
                <li>
                	<a href="javascript:void(0);" onMouseover="ddrivetip('Tip a friend about us', 300)"; onMouseout="hideddrivetip()" onclick="window.open('tip.asp?sid=3','TIP','width=400,height=330');"><img src="/Files/Graphics/tell_a_friend_icon.png" border="0" onmouseover="this.src='/Files/Graphics/tell_a_friend_icon_over.png'" onmouseout="this.src='/Files/Graphics/tell_a_friend_icon.png'" /></a>
                </li>
                 <li>
                	<a href="" onMouseover="ddrivetip('View our Youtube Channel', 300)"; onMouseout="hideddrivetip()"><img src="/Files/Graphics/youtube_icon.png" onmouseover="this.src='/Files/Graphics/youtube_icon_over.png'" onmouseout="this.src='/Files/Graphics/youtube_icon.png'" border="0" /></a>
                </li>
                  <li>
                	<a href="" onMouseover="ddrivetip('Follow us on Twitter', 300)"; onMouseout="hideddrivetip()"><img src="/Files/Graphics/twitter_icon.png" onmouseover="this.src='/Files/Graphics/twitter_icon_over.png'" onmouseout="this.src='/Files/Graphics/twitter_icon.png'" border="0" /></a>
                </li>
            	<li> <a href="http://www.facebook.com/pages/Argumenta/135956975949" onMouseover="ddrivetip('Visit us on Facebook', 300)"; onMouseout="hideddrivetip()" target="_blank"><img src="/Files/Graphics/facebook_icon.png" onmouseover="this.src='/Files/Graphics/facebook_icon_over.png'" onmouseout="this.src='/Files/Graphics/facebook_icon.png'" border="0" /></a>
                </li>
            </ul>
        </td>
      </tr>
    </table>
		</TD>
</TR>
<TR valign="Top" align="Left" >
	<TD id="maincell" align="center" >

        <table width="100%" border="0" cellspacing="0" cellpadding="20">
        	<tr>
        		<td id="frontmaintopbg">
        	</td>
        	</tr>
		</table>
        <div id="maincellwrapper">
        	<div id="leftsidebar">
            	<!--include file="menulevel4.asp"-->
				
	<ul id="submenulist">

            <li>
            	<div id="submenutext"><a href="?web" border="0" class="submenulistitem" />Web</a></div><div id="submenuicon"></div>
			</li>
			
            <li>
            	<div id="submenutext"><a href="?social" border="0" class="submenulistitem" />Social</a></div><div id="submenuicon"></div>
			</li>
			
            <li>
            	<div id="submenutext"><a href="?mobile-marketing" border="0" class="submenulistitem" />Mobile marketing</a></div><div id="submenuicon"></div>
			</li>
			
		</ul>

				
            </div>
		

				<div id="maincontentcell">
          			<h1>Our services</h1>
<h2>New media from strategy to execution</h2>
<p>Examples are plentiful as can been seen on this site.&nbsp;We can provide our own software for most tasks, but welcome working with your preferred software platform as well. <br />
<br />
Web: Our services include the full process from design to implementation, SEO, Adwords&nbsp;and hosting. We do webshops, intranet, auctions, catalogues and much more. Argumenta has its own CMS system: Sputnick, recently released in its newest edition. We also work in other CMS systems, if our clients prefer that.</p>
<p>E-mail marketing: we have our own, comprehensive news management system, called <a href="http://www.laikasys.dk">www.laikasys.dk</a>, that integrates seamlessly with our own CMS or any other web solution. Also now it is integrated with our facebook sign.up app.We also work with mail chimp and other systems. Just ask.</p>
<p>Social media: we do an increasing number of facebook solutions, often integrated with websites or mobile solutions, also twitter and related new media. we have started developing our own facebook apps, this is a focus area.</p>
<p>Mobile: This is a area requiring topnotch know-how to implement effective SMS and MMS campaigns.&nbsp;&nbsp;We have our own API and SMS management solution covering quiz, notification, facebook integration and more. For bigger challenges we work with <a href="http://www.ever.no">www.ever.no</a> using their API.</p>
				</div>
				<div style="width:720px;float:right;border-top:1px solid #2d2c2c;text-align:right;padding-top:10px;padding-bottom:10px;"><a href="javascript:scroll(0,0);" style="color:#2d2c2c;text-decoration:none;">BACK TO TOP</a></div>
			


		</div>
				</TD>
</TR>
<TR valign="Top" align="Left" >
	<TD id="footercell" align="center" valign="top" >

                <div id="footer">
                	<div id="footerbox">
                    	<h2>Some of our clients</h2>
                        
<ul id="clientlist">

	<li id="20" name="20" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="reflink.asp?refid=20" target="_blank" class="clientnamelink">BusinessTV.eu</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=20" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	<li id="12" name="12" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="reflink.asp?refid=12" target="_blank" class="clientnamelink">Comtech</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=12" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	<li id="14" name="14" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="reflink.asp?refid=14" target="_blank" class="clientnamelink">Donners Autoservice</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=14" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	<li id="15" name="15" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="reflink.asp?refid=15" target="_blank" class="clientnamelink">Experienza</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=15" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	<li id="16" name="16" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="reflink.asp?refid=16" target="_blank" class="clientnamelink">Festivalvognen</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=16" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	<li id="17" name="17" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="reflink.asp?refid=17" target="_blank" class="clientnamelink">Giritech</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=17" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	<li id="18" name="18" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="reflink.asp?refid=18" target="_blank" class="clientnamelink">Hostingkompagniet</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=18" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	<li id="19" name="19" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="reflink.asp?refid=19" target="_blank" class="clientnamelink">Goracing</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=19" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	<li id="1" name="1" onmouseover="changebg(this.id, '#53525d');" onmouseout="changebg(this.id, '');">
		<div id="clientname"><a href="?work&cid=1" target="" class="clientnamelink">malbilligt</a></div>
		<div id="clientlink"><a href="reflink.asp?refid=1" target="_blank" id="clientlink"><img src="/Files/Graphics/link_icon_small.png" border="0" id="clientlistlinkicon" /> link</a></div>
	</li>


	 </ul>
	
                    </div>
                    <div id="footerbox">
                    	<h2>Brought to you with</h2>
                        <ul id="productlogoslist">
                        	<li>
                            	<div id="logo">
                                	<a href="?sputnick"><img src="/Files/Graphics/sputnick_logo.png" border="0" /></a>
                                </div>
                                <div id="logotext">
                                	<h3>Sputnick CMS System</h3>
                                    <p>User friendly CMS to be tailored to your exact specification.</p>
                                </div>
                            </li>
                            <li>
                           	 	<div id="logo">
                                	<a href="?laikasys"><img src="/Files/Graphics/laika_logo.png" border="0" /></a>
                                </div>
                                <div id="logotext">
                                	<h3>Laika Email Marketing</h3>
                                    <p>See what works. Comprehensive statistics on subscribers.</p>
                                </div>
                            </li>
                            <li>
                            	<div id="logo">
                                	<a href="?survey-denmark"><img src="/Files/Graphics/survey_logo.png" border="0" /></a>
                                </div>
                                <div id="logotext">
                                	<h3>Survey Denmark Survey System</h3>
                                    <p>Because you cannot always know what people are thinking.</p>
                                </div>
                            </li>
                        </ul>
                    </div>
                    <div id="footerboxend">
                    	<h2>Contact us</h2>
                        <img src="/Files/Graphics/globes.png" border="0" id="globes" />
                        <div id="left"><h3>Argumenta Europe</h3>
                        <p>Hestesportens Hus<br />
                        Traverbanevej 10<br />
                        2920 Charlottenlund<br />
                        Denmark<br />
                        Phone: +45 39 30 19 39</p>
                        </div>
                        <div id="right">
                        <h3>Argumenta Asia</h3>
                        <p>3rd Floor<br />
                        Cacho Gonzales Building<br />
                        101 Aguirre Street<br />
                        1223 Makati City, Philippines<br />
                        Phone: +63 (2) 621 9857</p>
                        </div>
                    </div>
                </div>
					</TD>
</TR>
			
			</TABLE>
		</TD>
    </TR>
</TABLE>
</body>
</html>
