'); } function checkValidKeyForUserName(obj, event) { // Disable invalid keypresses (except a-z, A-Z, 0-9, _). if (!((event.keyCode >= 48 && event.keyCode <= 57) || (event.keyCode >= 65 && event.keyCode <= 90) || event.keyCode == 95 || (event.keyCode >= 97 && event.keyCode <= 122))) { event.returnValue = false; } } function checkValidKeyForEmailAddress(obj, event) { //alert(event.keyCode); // Convert upper case letters(A-Z) to lower case(a-z). if (event.keyCode >= 65 && event.keyCode <= 90) { event.keyCode += 32; } if (!((event.keyCode >= 48 && event.keyCode <= 57) || (event.keyCode >= 97 && event.keyCode <= 122) || event.keyCode == 46 || event.keyCode == 45 || event.keyCode == 64 || event.keyCode == 95)) event.returnValue = false; } function checkValidKeyForContactNumber(obj, event) { if (!(event.keyCode >= 48 && event.keyCode <= 57)) { event.returnValue = false; } } // function updateValues(obj) // { // //document.getElementById('UCOnlinesubmission_lbljournalName').innerHTML=obj; // obj='ijor.aspx?target=ijor:'+obj+'&type=onlinesubmission'; // //window.navigate(obj); // window.location.href=obj; // //alert(obj); // //alert('UCOnlinesubmission_lbtnos'); // //__doPostBack('UCOnlinesubmission_lbtnos',''); // } function checkShortcutKey(obj, event) { srcElementID = event.srcElement.id; // Handle pressing of enter key. if (event.keyCode == 13 && srcElementID != "TBjdirPublisherAddress" && srcElementID != "TBjdirEditorAddress" && srcElementID != "TBsuscriptionNotes") { if (srcElementID == "DDLsearchCatagory" || srcElementID == "TBsearchText") { post(document.getElementById("quickSearch")); } else if (srcElementID == "TBuserName" || srcElementID == "TBpassword") { post(document.getElementById("BTNlogIn")); } else if (srcElementID == "TBuserNameOnHP" || srcElementID == "TBpasswordOnHP") { post(document.getElementById("BTNlogInOnHP")); } else if (srcElementID == "TBforUsersUserName" || srcElementID == "TBforUsersPassword") { post(document.getElementById("BTNforUsersLogIn")); } else if (srcElementID == "TBforToccancelUsersUserName" || srcElementID == "TBforToccancelUsersPassword") { post(document.getElementById("BTNfortocccancelUsersLogIn")); } else if (srcElementID == "TBforAssociatesUserName" || srcElementID == "TBforAssociatesPassword") { post(document.getElementById("BTNforAssociatesLogIn")); } else if (srcElementID == "TBforLibrariansUserName" || srcElementID == "TBforLibrariansPassword") { post(document.getElementById("BTNforLibrariansLogIn")); } else if (srcElementID == "TBchangePasswordOldPassword" || srcElementID == "TBchangePasswordNewPassword" || srcElementID == "TBchangePasswordConfirmPassword") { post(document.getElementById("BTNchangePasswordUpdatePassword")); } else { event.returnValue = false; } } // Disable copying from web page using ctrl+c and ctrl+insert shortcuts except from the text boxes. else if (event.ctrlKey == true && (event.keyCode == 67 || event.keyCode == 45)) { if (srcElementID.search("TB") == -1) { event.returnValue = false; } } // Disable pasting on all the user name and contact number text boxes using ctrl+v and shift+insert shortcuts. else if ((event.ctrlKey == true && event.keyCode == 86) || (event.shiftKey == true && event.keyCode == 45)) { if (srcElementID == "TBuserName" || srcElementID == "TBuserNameOnHP" || srcElementID == "TBregisterUserName" || srcElementID == "TBregisterContactNumber") { event.returnValue = false; } } } function emailidupd(username, pwd) { var response = window.showModalDialog("emailidupd.aspx?u=" + username + "&p=" + pwd, "", "dialogWidth:500px,dialogHeight:200px,dialogTop:200px,dialogLeft:300px,toolbars:no,scrollbars:no,status=0,directories=0,location=0,resizable:no"); return response; } function post(obj) { objID = obj.id; if (objID == "BTNlogIn") { //Changed by Shyam 20-Feb-2014 //Revome Passowrd validation //if (document.getElementById("TBuserName").value != "" & document.getElementById("TBpassword").value != "") { // if (document.getElementById("TBuserName").value.indexOf("@") == -1) { // var obj = emailidupd(document.getElementById("TBuserName").value, document.getElementById("TBpassword").value); if (document.getElementById("TBuserName").value != "") { if (document.getElementById("TBuserName").value.indexOf("@") == -1) { var obj = emailidupd(document.getElementById("TBuserName").value); //alert(obj); if (obj != undefined && obj == true) { document.getElementById("TBuserName").value = ''; document.getElementById("TBpassword").value = ''; alert("Please use valid email address to login. Please try again."); //__doPostBack('LBTNlogIn',''); } } else { //document.getElementById("chkloghometop").checked=true; __doPostBack('LBTNlogIn', ''); } } } else if (objID == "BTNlogInOnHP") { //Changed by Shyam 07-Feb-2014 //Revome Passowrd validation //if (document.getElementById("TBuserNameOnHP").value != "" & document.getElementById("TBpasswordOnHP").value != "") { // if (document.getElementById("TBuserNameOnHP").value.indexOf("@") == -1) { // var obj = emailidupd(document.getElementById("TBuserNameOnHP").value, document.getElementById("TBpasswordOnHP").value); if (document.getElementById("TBuserNameOnHP").value != "") { if (document.getElementById("TBuserNameOnHP").value.indexOf("@") == -1) { var obj = emailidupd(document.getElementById("TBuserNameOnHP").value); //alert(obj); if (obj != undefined && obj == true) { document.getElementById("TBuserNameOnHP").value = ''; document.getElementById("TBpasswordOnHP").value = ''; alert("Please use valid email address to login. Please try again."); //__doPostBack('LBTNlogInOnHP',''); } } else { //document.getElementById("chkloghome").checked=true; __doPostBack('LBTNlogInOnHP', ''); } } } else if (objID == "quickSearch") { var searchString = document.getElementById("TBsearchText").value; var obj = /^(\s*)([\W\w]*)(\b\s*$)/; if (obj.test(searchString)) { searchString = searchString.replace(obj, '$2'); } var obj = / +/g; searchString = searchString.replace(obj, " "); if (searchString == " ") { searchString = ""; } if (searchString != "") { window.navigate("?target=search&type=" + document.getElementById("DDLsearchCatagory").value + "&string=" + searchString); } } else if (objID == "BTNforUsersLogIn") { if (document.getElementById("TBforUsersUserName").value != "" & document.getElementById("TBforUsersPassword").value != "") { __doPostBack('LBTNforUsersLogIn', ''); } } else if (objID == "BTNfortocccancelUsersLogIn") { if (document.getElementById("TBforToccancelUsersUserName").value != "" & document.getElementById("TBforToccancelUsersPassword").value != "") { __doPostBack('LBTNfortoccancelUsersLogIn', ''); } } else if (objID == "BTNforAssociatesLogIn") { if (document.getElementById("TBforAssociatesUserName").value != "" & document.getElementById("TBforAssociatesPassword").value != "") { __doPostBack('LBTNforAssociatesLogIn', ''); } } else if (objID == "BTNforLibrariansLogIn") { if (document.getElementById("TBforLibrariansUserName").value != "" & document.getElementById("TBforLibrariansPassword").value != "") { __doPostBack('LBTNforLibrariansLogIn', ''); } } else if (objID == "BTNchangePasswordUpdatePassword") { if (document.getElementById("TBchangePasswordOldPassword").value != "" & document.getElementById("TBchangePasswordNewPassword").value != "" & document.getElementById("TBchangePasswordConfirmPassword").value != "") { __doPostBack('LBTNchangePasswordUpdatePassword', ''); } } } function GetDate(CtrlName) { /**************************************************** Use Javascript method (window.open) to PopUp a new window which contain a Calendar Control. In the meantime, we'll pass the Parent Form Name and Request Control Name in the QueryString! *****************************************************/ //use showModalDialog() ChildWindow = window.open('Calendar1.aspx?FormName=' + document.forms[0].name + '&CtrlName=' + CtrlName, "PopUpCalendar", "width=270,height=300,top=200,left=200,toolbars=no,scrollbars=no,status=no,resizable=no"); //ChildWindow.focus(); } // function GetemailidupdWindow() // { //use showModalDialog() // ChildWindow = window.showModalDialog('ijor.aspx?target=emailidupd', "Update Email ID", "dialogwidth=270,dialogheight=300,dialogtop=200,dialogleft=200,toolbars=no,scrollbars=no,status=no,resizable=no"); // ChildWindow.focus(); // } function sendMsg() { event.returnValue = "Logoff"; window.location.href = "https://deepak/ijor1/sessionout.aspx"; }
(185.177.239.172)
Email id
 

Journal of Exclusion Studies

Publisher: Diva Enterprises Pvt. Ltd.
Print ISSN: 2231-4547
Online ISSN: 2231-4555
Number of issues per year: 2
Print frequency: Half-Yearly
Month(s) of publication: June and December
Description:

The Journal of Exclusion Studies, the official publication of the Journal started in 2011. Since 2011, it has been published as a biannual Journal and two parts are published each in February and August. It is published both offline (p-ISSN: 2231-4547) and online (e-ISSN: 2231-4555) from 2011 onwards (through www.indianjournals.com).


Journal peer recognition & Market reputation


The original manuscripts that enhance the level of research and contribute new developments to the social exclusion studies are encouraged. The work belonging to the fields of Economics, Education, History, Management, Philosophy, Political Science, Sociology, Social Anthropology and allied disciplines are invited. The journal is expected to help researchers, policy makers and social activists in the social sectors for social development to enhance their understanding of it. The manuscripts must be unpublished and should not have been submitted for publication elsewhere. There are no Publication Charges. The journal is well recognized amongst the academics, social activists, and researchers of the related fields of studies. It has been subscribed by the reputed university libraries.


Indexed/Abstracted: Indian citation Index, NAAS Rating 2020 - 2.19, J-Gate, EBSCO Discovery, Google Scholar, CNKI Scholar, Indian Science, Eurasian Scientific Journal Index, Directory of Research Journals Indexing, Indian Science Abstract, and InfoBase Index.

    Subscription Rates for the year :2025 Click here to Subscribe now
    Online * Print **
    Institute 2,200.00 3,100.00
    2,200.00 3,100.00

    Online *
    Institute 260.00
    260.00
    Site Licencing Price
    11,000.00 1,300.00
    For consortia pricing, Please contact at info@indianjournals.com.
     
    Please Note:
    1. * Online subscription rates are inclusive of service tax.
    2. * Online subscription includes limited access (5 concurrent users) of current subscription plus contents published from 2005(If available).
    3. ** Print includes complimentary online limited acess (5 concurrent users).
    For Terms & Conditions. Please click here.

    Top

    ║ Site map ║ Privacy Policy ║ Copyright ║ Terms & Conditions ║ Page Rank Tool
    904,575,458 visitor(s) since 30th May, 2005.
    All rights reserved. Site designed and maintained by DIVA ENTERPRISES PVT. LTD..
    Note: Please use Internet Explorer (6.0 or above). Some functionalities may not work in other browsers.