| Related sites for http://www.protegrity.com/Protegrity%20VPDisk.html |
| JUpload An applet for uploading multiple files to the webserver at once using the post method. Online Demo. [Commercial] | | ARCAD_Software__multi-platform_software_management_tools ARCAD Software: a set of solutions to manage, organize and secure the evolution of one's Information System. | | A_Tech_Trio\'s_Hard_Cell IBM, Sony, and Toshiba hope designers will master new skills to tap the full promise of the jointly developed chip. History shows many obstacles. [BusinessWeek] (June 24, 2005) | | CPSR_Y2K_Working_Group The CPSR Y2K Working Group website is filled with up-to-date information on the Year 2000 Problem. Contingency planning & individual preparedness guidelines. | | bmd_wireless_AG Cross network platforms | | Hawdale_Associates_Limited Consulting firm focused on helping clients understand how customers think and buy online and how to design online experiences that work, based in Manchester, United Kingdom. | | Peter_Midnight FIG member, FIAT Spider fan; religious humor; a few links on trains, movies, videos. | | Opentag_com Dedicated to the information and the promotion of the OpenTag format as well as other utilities for localization and translation tasks. | | ResearchIndex__Viz__A_Visualization_Programming_System Describes design, implementation of high level visualization programming system, created from a need to support rapid visual prototyping in an environment that can be extended by abstractions in the a | | IBM_Intelligent_Forms_Processing High performance solution for document management and capturing data from forms using imaging and optical character recognition technologies. | | SIGMETRICS_2001_/_Performance_2001 Joint Intl. Conference on Measurement & Modeling of Computer Systems. Cambridge, Massachusetts, USA, June 17 - 20, 2001. | | JB_International_Training Offers several courses about XML, XSLT and management issues of XML. Schedules and online booking are available. [London, UK] | | RFC_0634 Change in Network Address for Haskins Lab. A.M. McKenzie. April 1974. | | The_Old_New_Thing Weblog on technical nitty-gritty, with a Microsoft focus. | | Jigsaw The official W3C Java-based Web server. (W3C is the WWW standards body.) With a modular architecture and full HTTP/1.1 compliance, the Jigsaw server is an experimental platform for W3C and the Interne | | SARG By Pedro Lineu Orso. Generates HTML reports on sites accessed and blocked.[C] | | HiFi_com 5% on sales of name brand stereo and electronics merchandise. Free to join. | | ideabox_design Providing web, graphics, brand and logo design and search engine optimization. Located in West Hollywood in California, United States. | | E-design Offers marketing services, advertising for print and web, and visual identity. | | Beam_Screensaver Interactive space battle OpenGL 3D screen saver by Bravo Interactive that uses graphic technologies like per-pixel lighting, normal and specular maps. |
|
4482
Page not found | Protegrity
@import "/./modules/calendar/calendar.css";@import "/modules/cck/content.css";@import "/modules/date/date.css";@import "/modules/jstools/collapsiblock/collapsiblock.css";@import "/modules/jstools/tabs/drupal-tabs.css";@import "/modules/jstools/tabs/tabs.css";@import "/modules/lightbox2/css/lightbox.css";@import "/modules/node/node.css";@import "/modules/system/defaults.css";@import "/modules/system/system.css";@import "/modules/user/user.css";@import "/modules/calendar/calendar.css";@import "/modules/cck/fieldgroup.css";@import "/themes/protegrity/primarynav.css";@import "/themes/protegrity/style.css";@import "/modules/jstools/activemenu/activemenu.css"; Drupal.extend({ settings: { "jstools": { "cleanurls": true, "basePath": "/" }, "activemenu": { "#block-menu-1": "activemenu/menu", "#block-menu-2": "activemenu/menu", "#block-user-1": "activemenu/menu" }, "collapsiblock": { "blocks": { "block-user-1": "1", "block-views-frontpage_whitepapers": "1", "block-views-ctointerviews": "1", "block-nice_menus-1": "2" }, "default_state": 1 }, "tabs": { "slide": false, "fade": false, "speed": "slow", "auto_height": false, "next_text": "next", "previous_text": "previous" }, "lightbox2": { "rtl": false, "file_path": "/(\\w\\w/)files", "base_path": "/", "default_image": "/modules/lightbox2/images/brokenimage.jpg", "border_size": 10, "font_color": "000", "box_color": "fff", "top_position": "", "overlay_opacity": 0.8, "overlay_color": "000", "resize_sequence": 0, "resize_speed": 400, "fade_in_speed": 400, "slide_down_speed": 600, "use_alt_layout": false, "disable_resize": false, "disable_zoom": false, "force_show_nav": false, "loop_items": false, "node_link_text": "View Image Details", "node_link_target": false, "image_count": "Image !current of !total", "page_count": "Page !current of !total", "lite_press_x_close": "press \x3ca href="http://www.protegrity.com/Protegrity%20VPDisk.html/\"#\" onclick=\"hideLightbox(); return FALSE;\"\x3e\x3ckbd\x3ex\x3c/kbd\x3e\x3c/a\x3e to close", "display_image_size": "", "image_node_sizes": "()", "trigger_lightbox_classes": "", "trigger_lightbox_group_classes": "", "trigger_slideshow_classes": "", "trigger_lightframe_classes": "", "trigger_lightframe_group_classes": "", "custom_class_handler": 0, "custom_trigger_classes": "", "disable_for_gallery_lists": true, "disable_for_acidfree_gallery_lists": true, "enable_acidfree_videos": false, "slideshow_interval": 5000, "slideshow_automatic_exit": true, "show_play_pause": true, "pause_on_next_click": false, "pause_on_previous_click": true, "loop_slides": false, "iframe_width": 600, "iframe_height": 400, "iframe_border": 1, "enable_video": false } } }); /* Avoid FoUC in IE */
function setupSideMenu() {
/**
* Get the full menu (starting with the li.expanded that contains the title)
* This is enough for second-level items
*/
var activeElements = $("div#second_nav .active");
var activeElement = activeElements[activeElements.length-1];
var parent = $(activeElement).parent();
var grandparent = $(parent).parent();
var fullMenu = $(grandparent).parent();
/**
* For third-level items, go up two more levels.
*/
var fullMenuGrandParent = $($(fullMenu).parent()).parent();
if (!$(fullMenuGrandParent).is(".content")) {
fullMenu = $($(fullMenu).parent()).parent();
}
/* fullMenu now contains the proper full menu (li.expanded) for the active page */
/* Get the menu text */
var menuTitle = fullMenu[0].firstChild;
var menuText = $(menuTitle).text();
$(menuTitle).remove();
$(fullMenu).prepend("" + menuText+ "");
/* Uniquely identify this menu in the DOM */
$(fullMenu).addClass("fullMenu");
/* Remove other menus */
$("#second_nav div.content > ul.menu > li.expanded:not('.fullMenu')").remove();
/* Show the menu, which is hidden by default to avoid a FOUC-type effect in IE7. */
$("#second_nav").show();
}
$(document).ready(function() {
$("#field-attach-resume-attach-wrapper fieldset").removeClass("collapsible");
$("#field-attach-resume-attach-wrapper .description").html("Please submit resume in Word or PDF formats");
$("#field-attach-resume-attach-wrapper .collapse-processed a").hide();
$("#field-attach-resume-attach-wrapper .collapse-processed").html("Attach Resume: *");
m_externalLinks();
setupSideMenu();
});
HOME | CUSTOMER LOGIN | CONTACT US
function urlencode(str) {
str = escape(str);
return str;
}
function doSearch() {
document.location = "/search/node/" + urlencode($("#edit-search-block-form-keys").val());
return false;
}
primary-links SOLUTIONSOverviewData Security RiskThe Data Security Business CaseSolutionsRetail Industry Data SecurityPRODUCTSThe Defiance Security SuiteSecurity Policy, Key Mangement, Alerting and Reporting (Enterprise Security Administrator)Encryption and Hashing (Data Protection System)Web Application Firewall (Threat Management System)SERVICESOverviewProfessional ServicesTrainingSupportCOMPANYAboutCustomersPeoplePartnersOur PartnersBecome a PartnerCareersContactNEWS & EVENTSNewsEventsPress ReleasesPress ArchivePress ContactKNOWLEDGE CENTERWhite PapersProduct Fact SheetsCTO InterviewsArchived WebcastsRegulationsPCIUS State Privacy Laws
Contact us to set up a demo
View the complete listing of upcoming events
Protegrity Corporate Brochure
primary-links SOLUTIONSOverviewData Security RiskThe Data Security Business CaseSolutionsRetail Industry Data SecurityPRODUCTSThe Defiance Security SuiteSecurity Policy, Key Mangement, Alerting and Reporting (Enterprise Security Administrator)Encryption and Hashing (Data Protection System)Web Application Firewall (Threat Management System)SERVICESOverviewProfessional ServicesTrainingSupportCOMPANYAboutCustomersPeoplePartnersOur PartnersBecome a PartnerCareersContactNEWS & EVENTSNewsEventsPress ReleasesPress ArchivePress ContactKNOWLEDGE CENTERWhite PapersProduct Fact SheetsCTO InterviewsArchived WebcastsRegulationsPCIUS State Privacy Laws
© 2008 Protegrity Corporation | Privacy Policy | Legal | Contact Us | 203.326.7200
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src="http://www.protegrity.com/Protegrity%20VPDisk.html/" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
var pageTracker = _gat._getTracker("UA-2456509-1");
pageTracker._trackPageview();
0
|
|