// JavaScript Document

// this function is used in the Portfolio section to open screenshots in a new browser window

function openScreenshot (url) {
    window.open(url,'screenshot', 'width=800,height=600,top=20,left=20,scrollbars=yes,resizable=yes,status=no');
}

function openScreenshotPDF (url) {
    window.open(url,'screenshot', 'width=776,height=792,top=20,left=20,scrollbars=yes,resizable=yes,status=no');
}

function openScreenshotSite (url) {
    window.open(url,'screenshot', 'width=800,height=660,top=20,left=20,menubar=yes,toolbar=yes,location=yes,status=no,scrollbars=yes,resizable=yes');
}