﻿//ip_law
function new_window_iplaw(page)
{
strFeatures = "top=0,left=0,width=800,height=700,toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=yes";
window.open(page, "", strFeatures);
}
//local office
function new_window_local(page)
{
strFeatures = "top=100,left=450,width=300,height=200,toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=yes";
window.open(page, "Local", strFeatures);
}

//resume
function new_window_resume(page) 
{ 
strFeatures = "top=0,left=0,width=600,height=550,toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=yes"; 
window.open(page, "", strFeatures); 
}

//mailto
function new_window_mailto(page) 
{ 
strFeatures = "top=50,left=300,width=690,height=520,toolbar=0,menubar=0,location=0,directories=0,status=0,scrollbars=yes"; 
window.open(page, "mailto", strFeatures); 
}
//all
function new_window_all(page) 
{ 
window.open(page); 
}
