<!--
// Shows SOS whitelabel site in a popup window
function showSOSWhitelabel(){
// change this value to the URL provided by SOS for your whitelabel 
var sos_url="http://www.searchofficespace.com/corporateofficecenters.html";
// change this title to the title you'd like
var window_title="Serviced Office Space Search";

var new_wind=window.open("","sos_wl","menubar=0,titlebar=0,status=1,resizable=1,location=0");

var window_content="<html><head><title>"+window_title+"</title></head><frameset rows='*' framespacing='0' frameborder='0' border='0'><frame src='"+sos_url+"' scrolling='auto' name='main' marginheight='0' marginwidth='0'></frameset></html>";

new_wind.document.writeln(window_content);
}

-->

