// JavaScript Document
function VV_Popup(url, name, features, replace) {
	window.open(url, name, features, replace);
}
function VV_SetCookies(iid, cid) {
// set time, it's in milliseconds
var today = new Date();
today.setTime( today.getTime() );
var expires_date = new Date( today.getTime() + (30 * 1000 * 60 * 60 * 24) ); //30 days

//Set IID
document.cookie = "VirtuOz_IID=" + iid + ";expires=" + expires_date.toGMTString()+";path=/";
//Set CID
document.cookie = "VirtuOz_CID=ContextId=" + cid + ";path=/"; 
}
function VV_SetCookiesAndNav(iid, cid, url) {
// set time, it's in milliseconds
var today = new Date();
today.setTime( today.getTime() );
var expires_date = new Date( today.getTime() + (30 * 1000 * 60 * 60 * 24) ); //30 days
//Set IID
document.cookie = "VirtuOz_IID=" + iid + ";expires=" + expires_date.toGMTString()+";path=/";
//Set CID
document.cookie = "VirtuOz_CID=ContextId=" + cid + ";path=/";

//navigation
document.location.href = url;

}



