function svcNew(){
svcStatic = document.getElementById('svc-static');
svcStatic.style.display = 'none';
return;
}
function svcOld(){
svcStatic = document.getElementById('svc-static');
svcStatic.style.display = 'block';
svcContent = document.getElementById('svc-content');
svcContent.style.visibility = 'hidden';

sdHead = document.getElementById('svc-head');
sdimg = "url(http://seekingventurecapital.com/seeking-venture-capital-art/still-seeking-venture-capital.gif)";
sdHead.style.backgroundImage = sdimg;
sdHead.style.backgroundRepeat = "no-repeat";
return;
}
var xmlhttp;
function svcSwap(str) {
sdHead = document.getElementById('svc-head');
sdMenu = document.getElementById(str);
if (sdMenu.src !== 'http://seekingventurecapital.com/seeking-venture-capital-art/seeking-venture-capital-for-suredone.gif'){
sdimg = "url(";sdimg += sdMenu.src;sdimg += ")";
sdHead.style.backgroundImage = sdimg;
sdHead.style.backgroundRepeat = "no-repeat";
} else {
sdHead.style.backgroundImage = "url(http://suredone.com/suredone.gif)";
sdHead.style.backgroundRepeat = "no-repeat";
}
xmlhttp=sdGetXmlHttpObject();
if (xmlhttp == null) { sdStatic = document.getElementById('svc-static');sdStatic.style.display = 'block';alert("no ajax = please read the rest below the line");return; }
var sdURL = "?xh2="+str;
xmlhttp.onreadystatechange=sdHeadStateChanged;
xmlhttp.open("GET",sdURL,true);
xmlhttp.send(null);

function svcMessage() {
xmlhttp2= new sdGetXmlHttpObject();
if (xmlhttp2 == null) { alert("no ajax = please read the rest below the line");return; }
var sdURL2 = "?xbdy="+str+"bdy";
xmlhttp2.onreadystatechange=sdContentStateChanged;
xmlhttp2.open("GET",sdURL2,true);
xmlhttp2.send(null);
return false;
}
setTimeout (svcMessage,600);
}
function svcForm(str) {
xmlhttp2= new sdGetXmlHttpObject();
if (xmlhttp2 == null) { alert("no ajax = please read the rest below the line");return; }
var sdURL2 = "?xbdy="+str+"bdy";
xmlhttp2.onreadystatechange=sdContentStateChanged;
xmlhttp2.open("GET",sdURL2,true);
xmlhttp2.send(null);
return false;
}

function sdClearValue(str) {
var sdvalue = document.getElementById(str);
sdvalue.value = '';
}
function sdHeadStateChanged() {
if (xmlhttp.readyState == 4) {
document.getElementById('svc-h2').innerHTML = xmlhttp.responseText;
}
}
function sdContentStateChanged() {
if (xmlhttp2.readyState == 4) {
document.getElementById('svc-content').innerHTML = xmlhttp2.responseText;
}
}
function sdGetXmlHttpObject() {
if (window.XMLHttpRequest) {
return new XMLHttpRequest();
}
if (window.ActiveXObject) {
return new ActiveXObject("Microsoft.XMLHTTP");
}
return null;
}